| Name | Type | Description | Notes |
|---|---|---|---|
| grid | ReferencedGrid | [optional] | |
| column | ReferencedColumn | [optional] | |
| branch | ReferencedGrid | [optional] | |
| type | str | [optional] | |
| selection_type | str | [optional] |
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)