Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 992 Bytes

File metadata and controls

29 lines (20 loc) · 992 Bytes

InlineObject20Meta

Properties

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

Example

from pdf_generator_api_client.models.inline_object20_meta import InlineObject20Meta

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

# convert the object into a dict
inline_object20_meta_dict = inline_object20_meta_instance.to_dict()
# create an instance of InlineObject20Meta from a dict
inline_object20_meta_from_dict = InlineObject20Meta.from_dict(inline_object20_meta_dict)

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