| Name | Type | Description | Notes |
|---|---|---|---|
| code | str |
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)