| Name |
Type |
Description |
Notes |
| name |
str |
|
|
from okta.models.create_brand_request import CreateBrandRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateBrandRequest from a JSON string
create_brand_request_instance = CreateBrandRequest.from_json(json)
# print the JSON string representation of the object
print(CreateBrandRequest.to_json())
# convert the object into a dict
create_brand_request_dict = create_brand_request_instance.to_dict()
# create an instance of CreateBrandRequest from a dict
create_brand_request_from_dict = CreateBrandRequest.from_dict(create_brand_request_dict)
[Back to Model list] [Back to API list] [Back to README]