| Name |
Type |
Description |
Notes |
| public_url |
str |
|
[optional] |
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]