Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

MFAStatusResponse

Properties

Name Type Description Notes
message str [optional]
mfa MFAStatusFields [optional]
status bool [optional]

Example

from hyperstack.models.mfa_status_response import MFAStatusResponse

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

# convert the object into a dict
mfa_status_response_dict = mfa_status_response_instance.to_dict()
# create an instance of MFAStatusResponse from a dict
mfa_status_response_from_dict = MFAStatusResponse.from_dict(mfa_status_response_dict)

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