Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.55 KB

File metadata and controls

42 lines (33 loc) · 1.55 KB

CreateColumn

Properties

Name Type Description Notes
id str [optional]
name str
description str [optional]
type str
editable bool [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]
length_limit_setting LengthLimitSetting [optional]

Example

from gridly.models.create_column import CreateColumn

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

# convert the object into a dict
create_column_dict = create_column_instance.to_dict()
# create an instance of CreateColumn from a dict
create_column_from_dict = CreateColumn.from_dict(create_column_dict)

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