Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

ColumnReference

Properties

Name Type Description Notes
grid ReferencedGrid [optional]
column ReferencedColumn [optional]
branch ReferencedGrid [optional]
type str [optional]
selection_type str [optional]

Example

from gridly.models.column_reference import ColumnReference

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

# convert the object into a dict
column_reference_dict = column_reference_instance.to_dict()
# create an instance of ColumnReference from a dict
column_reference_from_dict = ColumnReference.from_dict(column_reference_dict)

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