Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

ShareForm201ResponseMeta

Properties

Name Type Description Notes
public_id str Form sharing unique identifier [optional]

Example

from pdf_generator_api_client.models.share_form201_response_meta import ShareForm201ResponseMeta

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

# convert the object into a dict
share_form201_response_meta_dict = share_form201_response_meta_instance.to_dict()
# create an instance of ShareForm201ResponseMeta from a dict
share_form201_response_meta_from_dict = ShareForm201ResponseMeta.from_dict(share_form201_response_meta_dict)

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