Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 944 Bytes

File metadata and controls

29 lines (20 loc) · 944 Bytes

DocumentPublicUrl

Properties

Name Type Description Notes
public_url str [optional]

Example

from clientapi_billingo.models.document_public_url import DocumentPublicUrl

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

# convert the object into a dict
document_public_url_dict = document_public_url_instance.to_dict()
# create an instance of DocumentPublicUrl from a dict
document_public_url_from_dict = DocumentPublicUrl.from_dict(document_public_url_dict)

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