Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

GetContractEventsResponseModel

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
contract_events List[AdminContractEventFields] [optional]
count int [optional]

Example

from hyperstack.models.get_contract_events_response_model import GetContractEventsResponseModel

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

# convert the object into a dict
get_contract_events_response_model_dict = get_contract_events_response_model_instance.to_dict()
# create an instance of GetContractEventsResponseModel from a dict
get_contract_events_response_model_form_dict = get_contract_events_response_model.from_dict(get_contract_events_response_model_dict)

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