| Name |
Type |
Description |
Notes |
| brand_id |
str |
The `id` of the brand used to replace the existing brand. |
|
from okta.models.update_domain import UpdateDomain
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDomain from a JSON string
update_domain_instance = UpdateDomain.from_json(json)
# print the JSON string representation of the object
print(UpdateDomain.to_json())
# convert the object into a dict
update_domain_dict = update_domain_instance.to_dict()
# create an instance of UpdateDomain from a dict
update_domain_from_dict = UpdateDomain.from_dict(update_domain_dict)
[Back to Model list] [Back to API list] [Back to README]