Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

File metadata and controls

35 lines (26 loc) · 1.11 KB

PartnerConfig

Properties

Name Type Description Notes
background_image_url str [optional]
colors Colors [optional]
logos Logos [optional]
name str
support_email str [optional]
uris URIs [optional]
user_type str

Example

from hyperstack.models.partner_config import PartnerConfig

# TODO update the JSON string below
json = "{}"
# create an instance of PartnerConfig from a JSON string
partner_config_instance = PartnerConfig.from_json(json)
# print the JSON string representation of the object
print(PartnerConfig.to_json())

# convert the object into a dict
partner_config_dict = partner_config_instance.to_dict()
# create an instance of PartnerConfig from a dict
partner_config_from_dict = PartnerConfig.from_dict(partner_config_dict)

[Back to Model list] [Back to API list] [Back to README]