Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.24 KB

File metadata and controls

29 lines (20 loc) · 1.24 KB

PostCreateBusinessCustomizedButtonBody

Properties

Name Type Description Notes
customized_button PostCustomizedButton

Example

from kenar_api_client.models.post_create_business_customized_button_body import PostCreateBusinessCustomizedButtonBody

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

# convert the object into a dict
post_create_business_customized_button_body_dict = post_create_business_customized_button_body_instance.to_dict()
# create an instance of PostCreateBusinessCustomizedButtonBody from a dict
post_create_business_customized_button_body_from_dict = PostCreateBusinessCustomizedButtonBody.from_dict(post_create_business_customized_button_body_dict)

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