Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.02 KB

ApiAuthSendPost400Response.md

File metadata and controls

28 lines (20 loc) · 1.02 KB

ApiAuthSendPost400Response

Properties

Name Type Description Notes
message str

Example

from woj.models.api_auth_send_post400_response import ApiAuthSendPost400Response

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

# convert the object into a dict
api_auth_send_post400_response_dict = api_auth_send_post400_response_instance.to_dict()
# create an instance of ApiAuthSendPost400Response from a dict
api_auth_send_post400_response_form_dict = api_auth_send_post400_response.from_dict(api_auth_send_post400_response_dict)

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