Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

PostSetPostCustomizedButtonBody

Properties

Name Type Description Notes
customized_button PostCustomizedButton

Example

from kenar_api_client.models.post_set_post_customized_button_body import PostSetPostCustomizedButtonBody

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

# convert the object into a dict
post_set_post_customized_button_body_dict = post_set_post_customized_button_body_instance.to_dict()
# create an instance of PostSetPostCustomizedButtonBody from a dict
post_set_post_customized_button_body_from_dict = PostSetPostCustomizedButtonBody.from_dict(post_set_post_customized_button_body_dict)

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