Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

CreateAuthLogout2XXResponse

Properties

Name Type Description Notes
status str [optional]

Example

from seerr.models.create_auth_logout2_xx_response import CreateAuthLogout2XXResponse

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

# convert the object into a dict
create_auth_logout2_xx_response_dict = create_auth_logout2_xx_response_instance.to_dict()
# create an instance of CreateAuthLogout2XXResponse from a dict
create_auth_logout2_xx_response_from_dict = CreateAuthLogout2XXResponse.from_dict(create_auth_logout2_xx_response_dict)

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