Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

File metadata and controls

33 lines (24 loc) · 1.07 KB

StatusPageSocials

Properties

Name Type Description Notes
facebook str [optional]
instagram str [optional]
twitter str [optional]
email str [optional]
website str [optional]

Example

from openapi_client.models.status_page_socials import StatusPageSocials

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

# convert the object into a dict
status_page_socials_dict = status_page_socials_instance.to_dict()
# create an instance of StatusPageSocials from a dict
status_page_socials_from_dict = StatusPageSocials.from_dict(status_page_socials_dict)

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