Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

ContractInstancesResponse

Properties

Name Type Description Notes
instances List[ContractInstanceFields] [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.contract_instances_response import ContractInstancesResponse

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

# convert the object into a dict
contract_instances_response_dict = contract_instances_response_instance.to_dict()
# create an instance of ContractInstancesResponse from a dict
contract_instances_response_from_dict = ContractInstancesResponse.from_dict(contract_instances_response_dict)

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