Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

PatchValueReorderExportItem.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

PatchValueReorderExportItem

Properties

Name Type Description Notes
export_id int
reordered bool
end_of_pipeline bool

Example

from openapi_client.models.patch_value_reorder_export_item import PatchValueReorderExportItem

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

# convert the object into a dict
patch_value_reorder_export_item_dict = patch_value_reorder_export_item_instance.to_dict()
# create an instance of PatchValueReorderExportItem from a dict
patch_value_reorder_export_item_from_dict = PatchValueReorderExportItem.from_dict(patch_value_reorder_export_item_dict)

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