CreatePropertyMeta¶
Properties¶
| Name | Type | Description | Notes | 
|---|---|---|---|
| property_name | str | ||
| property_type | |||
| nullable | bool | [optional] | |
| default_value | object | [optional] | |
| description | str | [optional] | 
Example¶
from graphscope.flex.rest.models.create_property_meta import CreatePropertyMeta
# TODO update the JSON string below
json = "{}"
# create an instance of CreatePropertyMeta from a JSON string
create_property_meta_instance = CreatePropertyMeta.from_json(json)
# print the JSON string representation of the object
print(CreatePropertyMeta.to_json())
# convert the object into a dict
create_property_meta_dict = create_property_meta_instance.to_dict()
# create an instance of CreatePropertyMeta from a dict
create_property_meta_from_dict = CreatePropertyMeta.from_dict(create_property_meta_dict)