Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

OperatorListResponse

Properties

Name Type Description Notes
status str [optional]
message str [optional]
count int Total number of records matching the query [optional]
data List[Operator] [optional]

Example

from supportpal_client.models.operator_list_response import OperatorListResponse

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

# convert the object into a dict
operator_list_response_dict = operator_list_response_instance.to_dict()
# create an instance of OperatorListResponse from a dict
operator_list_response_from_dict = OperatorListResponse.from_dict(operator_list_response_dict)

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