| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| editable | bool | [optional] | |
| name | str | [optional] | |
| description | str | [optional] | |
| type | str | [optional] | |
| language_code | str | [optional] | |
| localization_type | str | [optional] | |
| number_format | NumberFormat | [optional] | |
| selection_options | List[str] | Please use selection | [optional] |
| selection | Selection | [optional] | |
| reference | Reference | [optional] | |
| formula | Formula | [optional] | |
| date_time_format | DateTimeFormat | [optional] |
from gridly.models.add_view_column import AddViewColumn
# TODO update the JSON string below
json = "{}"
# create an instance of AddViewColumn from a JSON string
add_view_column_instance = AddViewColumn.from_json(json)
# print the JSON string representation of the object
print(AddViewColumn.to_json())
# convert the object into a dict
add_view_column_dict = add_view_column_instance.to_dict()
# create an instance of AddViewColumn from a dict
add_view_column_from_dict = AddViewColumn.from_dict(add_view_column_dict)