Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 805 Bytes

File metadata and controls

29 lines (20 loc) · 805 Bytes

AuthUrl

Properties

Name Type Description Notes
auth_url str [optional]

Example

from ibm_gdsc_sdk_saas.models.auth_url import AuthUrl

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

# convert the object into a dict
auth_url_dict = auth_url_instance.to_dict()
# create an instance of AuthUrl from a dict
auth_url_from_dict = AuthUrl.from_dict(auth_url_dict)

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