Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

GetEntityDiscountDetailResponse

Properties

Name Type Description Notes
message str [optional]
organization List[DiscountPlanFields] [optional]
status bool [optional]
virtual_machine List[DiscountPlanFields] [optional]

Example

from hyperstack.models.get_entity_discount_detail_response import GetEntityDiscountDetailResponse

# TODO update the JSON string below
json = "{}"
# create an instance of GetEntityDiscountDetailResponse from a JSON string
get_entity_discount_detail_response_instance = GetEntityDiscountDetailResponse.from_json(json)
# print the JSON string representation of the object
print(GetEntityDiscountDetailResponse.to_json())

# convert the object into a dict
get_entity_discount_detail_response_dict = get_entity_discount_detail_response_instance.to_dict()
# create an instance of GetEntityDiscountDetailResponse from a dict
get_entity_discount_detail_response_from_dict = GetEntityDiscountDetailResponse.from_dict(get_entity_discount_detail_response_dict)

[Back to Model list] [Back to API list] [Back to README]