Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 933 Bytes

File metadata and controls

30 lines (21 loc) · 933 Bytes

ResourcePayload

Properties

Name Type Description Notes
resource_id int
discount_percent float

Example

from hyperstack.models.resource_payload import ResourcePayload

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

# convert the object into a dict
resource_payload_dict = resource_payload_instance.to_dict()
# create an instance of ResourcePayload from a dict
resource_payload_form_dict = resource_payload.from_dict(resource_payload_dict)

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