Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1015 Bytes

File metadata and controls

31 lines (22 loc) · 1015 Bytes

OperatorResponse

Properties

Name Type Description Notes
status str [optional]
message str [optional]
data Operator [optional]

Example

from supportpal_client.models.operator_response import OperatorResponse

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

# convert the object into a dict
operator_response_dict = operator_response_instance.to_dict()
# create an instance of OperatorResponse from a dict
operator_response_from_dict = OperatorResponse.from_dict(operator_response_dict)

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