Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 974 Bytes

RecoveryCodeList.md

File metadata and controls

30 lines (21 loc) · 974 Bytes

RecoveryCodeList

Properties

Name Type Description Notes
href str [optional]
recovery_codes List[str] [optional]

Example

from equinix_metal.models.recovery_code_list import RecoveryCodeList

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

# convert the object into a dict
recovery_code_list_dict = recovery_code_list_instance.to_dict()
# create an instance of RecoveryCodeList from a dict
recovery_code_list_form_dict = recovery_code_list.from_dict(recovery_code_list_dict)

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