| Name | Type | Description | Notes |
|---|---|---|---|
| client_id | str | ||
| audience | str | ||
| well_known_endpoint | str |
from compute_api_client.models.auth_config import AuthConfig
# TODO update the JSON string below
json = "{}"
# create an instance of AuthConfig from a JSON string
auth_config_instance = AuthConfig.from_json(json)
# print the JSON string representation of the object
print(AuthConfig.to_json())
# convert the object into a dict
auth_config_dict = auth_config_instance.to_dict()
# create an instance of AuthConfig from a dict
auth_config_from_dict = AuthConfig.from_dict(auth_config_dict)