| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| org_id |
int |
|
[optional] |
| description |
str |
|
[optional] |
| start_date |
datetime |
|
[optional] |
| end_date |
datetime |
|
[optional] |
| expiration_policy |
int |
|
[optional] |
| status |
str |
|
[optional] |
| discounts |
List[DiscountPlanFields] |
|
[optional] |
| created_at |
datetime |
|
[optional] |
from hyperstack.models.customer_contract_fields import CustomerContractFields
# TODO update the JSON string below
json = "{}"
# create an instance of CustomerContractFields from a JSON string
customer_contract_fields_instance = CustomerContractFields.from_json(json)
# print the JSON string representation of the object
print(CustomerContractFields.to_json())
# convert the object into a dict
customer_contract_fields_dict = customer_contract_fields_instance.to_dict()
# create an instance of CustomerContractFields from a dict
customer_contract_fields_form_dict = customer_contract_fields.from_dict(customer_contract_fields_dict)
[Back to Model list] [Back to API list] [Back to README]