Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 926 Bytes

File metadata and controls

29 lines (20 loc) · 926 Bytes

CreateBrandRequest

Properties

Name Type Description Notes
name str

Example

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]