Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 936 Bytes

File metadata and controls

29 lines (20 loc) · 936 Bytes

MFAStatusFields

Properties

Name Type Description Notes
mfa_enabled bool Whether MFA is enabled for the user

Example

from hyperstack.models.mfa_status_fields import MFAStatusFields

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

# convert the object into a dict
mfa_status_fields_dict = mfa_status_fields_instance.to_dict()
# create an instance of MFAStatusFields from a dict
mfa_status_fields_from_dict = MFAStatusFields.from_dict(mfa_status_fields_dict)

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