Skip to content

Commit 9e80a0e

Browse files
author
BitsAdmin
committed
Merge 'billing-Java-2022-01-01-online-2429-2026_03_26_16_32_22' into 'integration_2026-04-02_1133415429890'
feat: [development task] billing-2429-Java (2246439) See merge request: !945
2 parents 86865ff + cb3d752 commit 9e80a0e

1 file changed

Lines changed: 24 additions & 1 deletion

File tree

volcengine-java-sdk-billing/src/main/java/com/volcengine/billing/model/InstanceListForListAvailableInstancesOutput.java

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ public class InstanceListForListAvailableInstancesOutput {
5454
@SerializedName("Product")
5555
private String product = null;
5656

57+
@SerializedName("ProductName")
58+
private String productName = null;
59+
5760
@SerializedName("RemainRenewTimes")
5861
private String remainRenewTimes = null;
5962

@@ -216,6 +219,24 @@ public void setProduct(String product) {
216219
this.product = product;
217220
}
218221

222+
public InstanceListForListAvailableInstancesOutput productName(String productName) {
223+
this.productName = productName;
224+
return this;
225+
}
226+
227+
/**
228+
* Get productName
229+
* @return productName
230+
**/
231+
@Schema(description = "")
232+
public String getProductName() {
233+
return productName;
234+
}
235+
236+
public void setProductName(String productName) {
237+
this.productName = productName;
238+
}
239+
219240
public InstanceListForListAvailableInstancesOutput remainRenewTimes(String remainRenewTimes) {
220241
this.remainRenewTimes = remainRenewTimes;
221242
return this;
@@ -342,6 +363,7 @@ public boolean equals(java.lang.Object o) {
342363
Objects.equals(this.instanceName, instanceListForListAvailableInstancesOutput.instanceName) &&
343364
Objects.equals(this.paymentMethod, instanceListForListAvailableInstancesOutput.paymentMethod) &&
344365
Objects.equals(this.product, instanceListForListAvailableInstancesOutput.product) &&
366+
Objects.equals(this.productName, instanceListForListAvailableInstancesOutput.productName) &&
345367
Objects.equals(this.remainRenewTimes, instanceListForListAvailableInstancesOutput.remainRenewTimes) &&
346368
Objects.equals(this.renewType, instanceListForListAvailableInstancesOutput.renewType) &&
347369
Objects.equals(this.renewalDurationUnit, instanceListForListAvailableInstancesOutput.renewalDurationUnit) &&
@@ -352,7 +374,7 @@ public boolean equals(java.lang.Object o) {
352374

353375
@Override
354376
public int hashCode() {
355-
return Objects.hash(accountID, beginTime, configurationCode, expiredTime, instanceID, instanceName, paymentMethod, product, remainRenewTimes, renewType, renewalDurationUnit, renewalTimes, status, subStatus);
377+
return Objects.hash(accountID, beginTime, configurationCode, expiredTime, instanceID, instanceName, paymentMethod, product, productName, remainRenewTimes, renewType, renewalDurationUnit, renewalTimes, status, subStatus);
356378
}
357379

358380

@@ -369,6 +391,7 @@ public String toString() {
369391
sb.append(" instanceName: ").append(toIndentedString(instanceName)).append("\n");
370392
sb.append(" paymentMethod: ").append(toIndentedString(paymentMethod)).append("\n");
371393
sb.append(" product: ").append(toIndentedString(product)).append("\n");
394+
sb.append(" productName: ").append(toIndentedString(productName)).append("\n");
372395
sb.append(" remainRenewTimes: ").append(toIndentedString(remainRenewTimes)).append("\n");
373396
sb.append(" renewType: ").append(toIndentedString(renewType)).append("\n");
374397
sb.append(" renewalDurationUnit: ").append(toIndentedString(renewalDurationUnit)).append("\n");

0 commit comments

Comments
 (0)