Skip to content

Commit d2cea44

Browse files
author
Api (Codebuild)
committed
Look for details in API documentation's changelog
1 parent 484b9a1 commit d2cea44

File tree

8 files changed

+32
-32
lines changed

8 files changed

+32
-32
lines changed

docs/SubnetRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Name | Type | Description | Notes
1010
**fkiUserID** | **Integer** | The unique ID of the User | [optional]
1111
**fkiApikeyID** | **Integer** | The unique ID of the Apikey | [optional]
1212
**objSubnetDescription** | [**MultilingualSubnetDescription**](MultilingualSubnetDescription.md) | |
13-
**iSubnetNetwork** | **Integer** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14-
**iSubnetMask** | **Integer** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
13+
**iSubnetNetwork** | **Long** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14+
**iSubnetMask** | **Long** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
1515

1616

1717

docs/SubnetRequestCompound.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Name | Type | Description | Notes
1010
**fkiUserID** | **Integer** | The unique ID of the User | [optional]
1111
**fkiApikeyID** | **Integer** | The unique ID of the Apikey | [optional]
1212
**objSubnetDescription** | [**MultilingualSubnetDescription**](MultilingualSubnetDescription.md) | |
13-
**iSubnetNetwork** | **Integer** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14-
**iSubnetMask** | **Integer** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
13+
**iSubnetNetwork** | **Long** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14+
**iSubnetMask** | **Long** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
1515

1616

1717

docs/SubnetResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Name | Type | Description | Notes
1010
**fkiUserID** | **Integer** | The unique ID of the User | [optional]
1111
**fkiApikeyID** | **Integer** | The unique ID of the Apikey | [optional]
1212
**objSubnetDescription** | [**MultilingualSubnetDescription**](MultilingualSubnetDescription.md) | |
13-
**iSubnetNetwork** | **Integer** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14-
**iSubnetMask** | **Integer** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
13+
**iSubnetNetwork** | **Long** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14+
**iSubnetMask** | **Long** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
1515

1616

1717

docs/SubnetResponseCompound.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Name | Type | Description | Notes
1010
**fkiUserID** | **Integer** | The unique ID of the User | [optional]
1111
**fkiApikeyID** | **Integer** | The unique ID of the Apikey | [optional]
1212
**objSubnetDescription** | [**MultilingualSubnetDescription**](MultilingualSubnetDescription.md) | |
13-
**iSubnetNetwork** | **Integer** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14-
**iSubnetMask** | **Integer** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
13+
**iSubnetNetwork** | **Long** | The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064 |
14+
**iSubnetMask** | **Long** | The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040 |
1515

1616

1717

src/main/java/org/openapitools/client/model/SubnetRequest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public class SubnetRequest {
3131
@SerializedName("objSubnetDescription")
3232
private MultilingualSubnetDescription objSubnetDescription = null;
3333
@SerializedName("iSubnetNetwork")
34-
private Integer iSubnetNetwork = null;
34+
private Long iSubnetNetwork = null;
3535
@SerializedName("iSubnetMask")
36-
private Integer iSubnetMask = null;
36+
private Long iSubnetMask = null;
3737

3838
/**
3939
* The unique ID of the Subnet
@@ -88,10 +88,10 @@ public void setObjSubnetDescription(MultilingualSubnetDescription objSubnetDescr
8888
* maximum: 4294967295
8989
**/
9090
@ApiModelProperty(required = true, value = "The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064")
91-
public Integer getISubnetNetwork() {
91+
public Long getISubnetNetwork() {
9292
return iSubnetNetwork;
9393
}
94-
public void setISubnetNetwork(Integer iSubnetNetwork) {
94+
public void setISubnetNetwork(Long iSubnetNetwork) {
9595
this.iSubnetNetwork = iSubnetNetwork;
9696
}
9797

@@ -101,10 +101,10 @@ public void setISubnetNetwork(Integer iSubnetNetwork) {
101101
* maximum: 4294967295
102102
**/
103103
@ApiModelProperty(required = true, value = "The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040")
104-
public Integer getISubnetMask() {
104+
public Long getISubnetMask() {
105105
return iSubnetMask;
106106
}
107-
public void setISubnetMask(Integer iSubnetMask) {
107+
public void setISubnetMask(Long iSubnetMask) {
108108
this.iSubnetMask = iSubnetMask;
109109
}
110110

src/main/java/org/openapitools/client/model/SubnetRequestCompound.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public class SubnetRequestCompound {
3131
@SerializedName("objSubnetDescription")
3232
private MultilingualSubnetDescription objSubnetDescription = null;
3333
@SerializedName("iSubnetNetwork")
34-
private Integer iSubnetNetwork = null;
34+
private Long iSubnetNetwork = null;
3535
@SerializedName("iSubnetMask")
36-
private Integer iSubnetMask = null;
36+
private Long iSubnetMask = null;
3737

3838
/**
3939
* The unique ID of the Subnet
@@ -88,10 +88,10 @@ public void setObjSubnetDescription(MultilingualSubnetDescription objSubnetDescr
8888
* maximum: 4294967295
8989
**/
9090
@ApiModelProperty(required = true, value = "The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064")
91-
public Integer getISubnetNetwork() {
91+
public Long getISubnetNetwork() {
9292
return iSubnetNetwork;
9393
}
94-
public void setISubnetNetwork(Integer iSubnetNetwork) {
94+
public void setISubnetNetwork(Long iSubnetNetwork) {
9595
this.iSubnetNetwork = iSubnetNetwork;
9696
}
9797

@@ -101,10 +101,10 @@ public void setISubnetNetwork(Integer iSubnetNetwork) {
101101
* maximum: 4294967295
102102
**/
103103
@ApiModelProperty(required = true, value = "The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040")
104-
public Integer getISubnetMask() {
104+
public Long getISubnetMask() {
105105
return iSubnetMask;
106106
}
107-
public void setISubnetMask(Integer iSubnetMask) {
107+
public void setISubnetMask(Long iSubnetMask) {
108108
this.iSubnetMask = iSubnetMask;
109109
}
110110

src/main/java/org/openapitools/client/model/SubnetResponse.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public class SubnetResponse {
3131
@SerializedName("objSubnetDescription")
3232
private MultilingualSubnetDescription objSubnetDescription = null;
3333
@SerializedName("iSubnetNetwork")
34-
private Integer iSubnetNetwork = null;
34+
private Long iSubnetNetwork = null;
3535
@SerializedName("iSubnetMask")
36-
private Integer iSubnetMask = null;
36+
private Long iSubnetMask = null;
3737

3838
/**
3939
* The unique ID of the Subnet
@@ -88,10 +88,10 @@ public void setObjSubnetDescription(MultilingualSubnetDescription objSubnetDescr
8888
* maximum: 4294967295
8989
**/
9090
@ApiModelProperty(required = true, value = "The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064")
91-
public Integer getISubnetNetwork() {
91+
public Long getISubnetNetwork() {
9292
return iSubnetNetwork;
9393
}
94-
public void setISubnetNetwork(Integer iSubnetNetwork) {
94+
public void setISubnetNetwork(Long iSubnetNetwork) {
9595
this.iSubnetNetwork = iSubnetNetwork;
9696
}
9797

@@ -101,10 +101,10 @@ public void setISubnetNetwork(Integer iSubnetNetwork) {
101101
* maximum: 4294967295
102102
**/
103103
@ApiModelProperty(required = true, value = "The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040")
104-
public Integer getISubnetMask() {
104+
public Long getISubnetMask() {
105105
return iSubnetMask;
106106
}
107-
public void setISubnetMask(Integer iSubnetMask) {
107+
public void setISubnetMask(Long iSubnetMask) {
108108
this.iSubnetMask = iSubnetMask;
109109
}
110110

src/main/java/org/openapitools/client/model/SubnetResponseCompound.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public class SubnetResponseCompound {
3131
@SerializedName("objSubnetDescription")
3232
private MultilingualSubnetDescription objSubnetDescription = null;
3333
@SerializedName("iSubnetNetwork")
34-
private Integer iSubnetNetwork = null;
34+
private Long iSubnetNetwork = null;
3535
@SerializedName("iSubnetMask")
36-
private Integer iSubnetMask = null;
36+
private Long iSubnetMask = null;
3737

3838
/**
3939
* The unique ID of the Subnet
@@ -88,10 +88,10 @@ public void setObjSubnetDescription(MultilingualSubnetDescription objSubnetDescr
8888
* maximum: 4294967295
8989
**/
9090
@ApiModelProperty(required = true, value = "The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064")
91-
public Integer getISubnetNetwork() {
91+
public Long getISubnetNetwork() {
9292
return iSubnetNetwork;
9393
}
94-
public void setISubnetNetwork(Integer iSubnetNetwork) {
94+
public void setISubnetNetwork(Long iSubnetNetwork) {
9595
this.iSubnetNetwork = iSubnetNetwork;
9696
}
9797

@@ -101,10 +101,10 @@ public void setISubnetNetwork(Integer iSubnetNetwork) {
101101
* maximum: 4294967295
102102
**/
103103
@ApiModelProperty(required = true, value = "The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040")
104-
public Integer getISubnetMask() {
104+
public Long getISubnetMask() {
105105
return iSubnetMask;
106106
}
107-
public void setISubnetMask(Integer iSubnetMask) {
107+
public void setISubnetMask(Long iSubnetMask) {
108108
this.iSubnetMask = iSubnetMask;
109109
}
110110

0 commit comments

Comments
 (0)