Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.09 KB

File metadata and controls

34 lines (25 loc) · 1.09 KB

DocumentBlock

Properties

Name Type Description Notes
id int [optional]
name str [optional]
prefix str [optional]
custom_field1 str [optional]
custom_field2 str [optional]
type DocumentBlockType [optional]

Example

from clientapi_billingo.models.document_block import DocumentBlock

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

# convert the object into a dict
document_block_dict = document_block_instance.to_dict()
# create an instance of DocumentBlock from a dict
document_block_from_dict = DocumentBlock.from_dict(document_block_dict)

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