| Name | Type | Description | Notes |
|---|---|---|---|
| auth_url | str | [optional] |
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)