Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

LineItemAdjustment.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

LineItemAdjustment

Properties

Name Type Description Notes
amount float [optional]
description str [optional]
href str [optional]

Example

from equinix_metal.models.line_item_adjustment import LineItemAdjustment

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

# convert the object into a dict
line_item_adjustment_dict = line_item_adjustment_instance.to_dict()
# create an instance of LineItemAdjustment from a dict
line_item_adjustment_form_dict = line_item_adjustment.from_dict(line_item_adjustment_dict)

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