Margin

Properties

NameTypeDescriptionNotes
topfloat
rightfloat
bottomfloat
leftfloat

Example

from pdf_generator_client.models.margin import Margin

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

# convert the object into a dict
margin_dict = margin_instance.to_dict()
# create an instance of Margin from a dict
margin_from_dict = Margin.from_dict(margin_dict)

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