BasePropertyMeta

Properties

Name

Type

Description

Notes

property_name

str

property_type

GSDataType

nullable

bool

[optional]

default_value

object

[optional]

description

str

[optional]

Example

from graphscope.flex.rest.models.base_property_meta import BasePropertyMeta

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

# convert the object into a dict
base_property_meta_dict = base_property_meta_instance.to_dict()
# create an instance of BasePropertyMeta from a dict
base_property_meta_from_dict = BasePropertyMeta.from_dict(base_property_meta_dict)

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