@@ -74,6 +74,12 @@ public class AccountBillingPlan {
7474 @ JsonProperty ("planName" )
7575 private String planName = null ;
7676
77+ @ JsonProperty ("planStartDate" )
78+ private String planStartDate = null ;
79+
80+ @ JsonProperty ("renewalDate" )
81+ private String renewalDate = null ;
82+
7783 @ JsonProperty ("renewalStatus" )
7884 private String renewalStatus = null ;
7985
@@ -444,6 +450,42 @@ public void setPlanName(String planName) {
444450 this .planName = planName ;
445451 }
446452
453+ public AccountBillingPlan planStartDate (String planStartDate ) {
454+ this .planStartDate = planStartDate ;
455+ return this ;
456+ }
457+
458+ /**
459+ *
460+ * @return planStartDate
461+ **/
462+ @ ApiModelProperty (value = "" )
463+ public String getPlanStartDate () {
464+ return planStartDate ;
465+ }
466+
467+ public void setPlanStartDate (String planStartDate ) {
468+ this .planStartDate = planStartDate ;
469+ }
470+
471+ public AccountBillingPlan renewalDate (String renewalDate ) {
472+ this .renewalDate = renewalDate ;
473+ return this ;
474+ }
475+
476+ /**
477+ *
478+ * @return renewalDate
479+ **/
480+ @ ApiModelProperty (value = "" )
481+ public String getRenewalDate () {
482+ return renewalDate ;
483+ }
484+
485+ public void setRenewalDate (String renewalDate ) {
486+ this .renewalDate = renewalDate ;
487+ }
488+
447489 public AccountBillingPlan renewalStatus (String renewalStatus ) {
448490 this .renewalStatus = renewalStatus ;
449491 return this ;
@@ -553,6 +595,8 @@ public boolean equals(java.lang.Object o) {
553595 Objects .equals (this .planFeatureSets , accountBillingPlan .planFeatureSets ) &&
554596 Objects .equals (this .planId , accountBillingPlan .planId ) &&
555597 Objects .equals (this .planName , accountBillingPlan .planName ) &&
598+ Objects .equals (this .planStartDate , accountBillingPlan .planStartDate ) &&
599+ Objects .equals (this .renewalDate , accountBillingPlan .renewalDate ) &&
556600 Objects .equals (this .renewalStatus , accountBillingPlan .renewalStatus ) &&
557601 Objects .equals (this .seatDiscounts , accountBillingPlan .seatDiscounts ) &&
558602 Objects .equals (this .supportIncidentFee , accountBillingPlan .supportIncidentFee ) &&
@@ -561,7 +605,7 @@ public boolean equals(java.lang.Object o) {
561605
562606 @ Override
563607 public int hashCode () {
564- return Objects .hash (addOns , appStoreReceiptExpirationDate , appStoreReceiptPurchaseDate , canCancelRenewal , canUpgrade , currencyCode , enableSupport , includedSeats , incrementalSeats , isDowngrade , notificationType , otherDiscountPercent , paymentCycle , paymentMethod , perSeatPrice , planClassification , planFeatureSets , planId , planName , renewalStatus , seatDiscounts , supportIncidentFee , supportPlanFee );
608+ return Objects .hash (addOns , appStoreReceiptExpirationDate , appStoreReceiptPurchaseDate , canCancelRenewal , canUpgrade , currencyCode , enableSupport , includedSeats , incrementalSeats , isDowngrade , notificationType , otherDiscountPercent , paymentCycle , paymentMethod , perSeatPrice , planClassification , planFeatureSets , planId , planName , planStartDate , renewalDate , renewalStatus , seatDiscounts , supportIncidentFee , supportPlanFee );
565609 }
566610
567611
@@ -589,6 +633,8 @@ public String toString() {
589633 sb .append (" planFeatureSets: " ).append (toIndentedString (planFeatureSets )).append ("\n " );
590634 sb .append (" planId: " ).append (toIndentedString (planId )).append ("\n " );
591635 sb .append (" planName: " ).append (toIndentedString (planName )).append ("\n " );
636+ sb .append (" planStartDate: " ).append (toIndentedString (planStartDate )).append ("\n " );
637+ sb .append (" renewalDate: " ).append (toIndentedString (renewalDate )).append ("\n " );
592638 sb .append (" renewalStatus: " ).append (toIndentedString (renewalStatus )).append ("\n " );
593639 sb .append (" seatDiscounts: " ).append (toIndentedString (seatDiscounts )).append ("\n " );
594640 sb .append (" supportIncidentFee: " ).append (toIndentedString (supportIncidentFee )).append ("\n " );
0 commit comments