| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| date_time_format | DateTimeFormat | [optional] | |
| depends_on | str | [optional] | |
| description | str | [optional] | |
| editable | bool | [optional] | |
| formula | Formula | [optional] | |
| is_source | bool | [optional] | |
| is_target | bool | [optional] | |
| language_code | str | [optional] | |
| language_name | str | [optional] | |
| length_limit_setting | LengthLimitSetting | [optional] | |
| localization_type | str | [optional] | |
| name | str | [optional] | |
| number_format | NumberFormat | [optional] | |
| reference | ColumnReference | [optional] | |
| selection | Selection | [optional] | |
| selection_options | List[str] | [optional] | |
| type | str | [optional] |
from gridly.models.view_column import ViewColumn
# TODO update the JSON string below
json = "{}"
# create an instance of ViewColumn from a JSON string
view_column_instance = ViewColumn.from_json(json)
# print the JSON string representation of the object
print(ViewColumn.to_json())
# convert the object into a dict
view_column_dict = view_column_instance.to_dict()
# create an instance of ViewColumn from a dict
view_column_from_dict = ViewColumn.from_dict(view_column_dict)