Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 887 Bytes

File metadata and controls

29 lines (20 loc) · 887 Bytes

SubmitAuthCode

Properties

Name Type Description Notes
code str

Example

from ibm_gdsc_sdk_saas.models.submit_auth_code import SubmitAuthCode

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

# convert the object into a dict
submit_auth_code_dict = submit_auth_code_instance.to_dict()
# create an instance of SubmitAuthCode from a dict
submit_auth_code_from_dict = SubmitAuthCode.from_dict(submit_auth_code_dict)

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