Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 930 Bytes

BrandLogo.md

File metadata and controls

31 lines (23 loc) · 930 Bytes

BrandLogo

Properties

Name Type Description Notes
urls BrandLogoUrls
file_size int
updated_at str
content_type str

Example

from onelogin.models.brand_logo import BrandLogo

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

# convert the object into a dict
brand_logo_dict = brand_logo_instance.to_dict()
# create an instance of BrandLogo from a dict
brand_logo_form_dict = brand_logo.from_dict(brand_logo_dict)

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