@@ -50,6 +50,8 @@ class AccountBillingPlan(object):
5050 'plan_feature_sets' : 'list[FeatureSet]' ,
5151 'plan_id' : 'str' ,
5252 'plan_name' : 'str' ,
53+ 'plan_start_date' : 'str' ,
54+ 'renewal_date' : 'str' ,
5355 'renewal_status' : 'str' ,
5456 'seat_discounts' : 'list[SeatDiscount]' ,
5557 'support_incident_fee' : 'str' ,
@@ -76,13 +78,15 @@ class AccountBillingPlan(object):
7678 'plan_feature_sets' : 'planFeatureSets' ,
7779 'plan_id' : 'planId' ,
7880 'plan_name' : 'planName' ,
81+ 'plan_start_date' : 'planStartDate' ,
82+ 'renewal_date' : 'renewalDate' ,
7983 'renewal_status' : 'renewalStatus' ,
8084 'seat_discounts' : 'seatDiscounts' ,
8185 'support_incident_fee' : 'supportIncidentFee' ,
8286 'support_plan_fee' : 'supportPlanFee'
8387 }
8488
85- def __init__ (self , add_ons = None , app_store_receipt_expiration_date = None , app_store_receipt_purchase_date = None , can_cancel_renewal = None , can_upgrade = None , currency_code = None , enable_support = None , included_seats = None , incremental_seats = None , is_downgrade = None , notification_type = None , other_discount_percent = None , payment_cycle = None , payment_method = None , per_seat_price = None , plan_classification = None , plan_feature_sets = None , plan_id = None , plan_name = None , renewal_status = None , seat_discounts = None , support_incident_fee = None , support_plan_fee = None ): # noqa: E501
89+ def __init__ (self , add_ons = None , app_store_receipt_expiration_date = None , app_store_receipt_purchase_date = None , can_cancel_renewal = None , can_upgrade = None , currency_code = None , enable_support = None , included_seats = None , incremental_seats = None , is_downgrade = None , notification_type = None , other_discount_percent = None , payment_cycle = None , payment_method = None , per_seat_price = None , plan_classification = None , plan_feature_sets = None , plan_id = None , plan_name = None , plan_start_date = None , renewal_date = None , renewal_status = None , seat_discounts = None , support_incident_fee = None , support_plan_fee = None ): # noqa: E501
8690 """AccountBillingPlan - a model defined in Swagger""" # noqa: E501
8791
8892 self ._add_ons = None
@@ -104,6 +108,8 @@ def __init__(self, add_ons=None, app_store_receipt_expiration_date=None, app_sto
104108 self ._plan_feature_sets = None
105109 self ._plan_id = None
106110 self ._plan_name = None
111+ self ._plan_start_date = None
112+ self ._renewal_date = None
107113 self ._renewal_status = None
108114 self ._seat_discounts = None
109115 self ._support_incident_fee = None
@@ -148,6 +154,10 @@ def __init__(self, add_ons=None, app_store_receipt_expiration_date=None, app_sto
148154 self .plan_id = plan_id
149155 if plan_name is not None :
150156 self .plan_name = plan_name
157+ if plan_start_date is not None :
158+ self .plan_start_date = plan_start_date
159+ if renewal_date is not None :
160+ self .renewal_date = renewal_date
151161 if renewal_status is not None :
152162 self .renewal_status = renewal_status
153163 if seat_discounts is not None :
@@ -594,6 +604,52 @@ def plan_name(self, plan_name):
594604
595605 self ._plan_name = plan_name
596606
607+ @property
608+ def plan_start_date (self ):
609+ """Gets the plan_start_date of this AccountBillingPlan. # noqa: E501
610+
611+ # noqa: E501
612+
613+ :return: The plan_start_date of this AccountBillingPlan. # noqa: E501
614+ :rtype: str
615+ """
616+ return self ._plan_start_date
617+
618+ @plan_start_date .setter
619+ def plan_start_date (self , plan_start_date ):
620+ """Sets the plan_start_date of this AccountBillingPlan.
621+
622+ # noqa: E501
623+
624+ :param plan_start_date: The plan_start_date of this AccountBillingPlan. # noqa: E501
625+ :type: str
626+ """
627+
628+ self ._plan_start_date = plan_start_date
629+
630+ @property
631+ def renewal_date (self ):
632+ """Gets the renewal_date of this AccountBillingPlan. # noqa: E501
633+
634+ # noqa: E501
635+
636+ :return: The renewal_date of this AccountBillingPlan. # noqa: E501
637+ :rtype: str
638+ """
639+ return self ._renewal_date
640+
641+ @renewal_date .setter
642+ def renewal_date (self , renewal_date ):
643+ """Sets the renewal_date of this AccountBillingPlan.
644+
645+ # noqa: E501
646+
647+ :param renewal_date: The renewal_date of this AccountBillingPlan. # noqa: E501
648+ :type: str
649+ """
650+
651+ self ._renewal_date = renewal_date
652+
597653 @property
598654 def renewal_status (self ):
599655 """Gets the renewal_status of this AccountBillingPlan. # noqa: E501
0 commit comments