GetPropertyMeta

Properties

Name

Type

Description

Notes

property_name

str

property_type

GSDataType

nullable

bool

[optional]

default_value

object

[optional]

description

str

[optional]

property_id

int

Example

from graphscope.flex.rest.models.get_property_meta import GetPropertyMeta

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

# convert the object into a dict
get_property_meta_dict = get_property_meta_instance.to_dict()
# create an instance of GetPropertyMeta from a dict
get_property_meta_from_dict = GetPropertyMeta.from_dict(get_property_meta_dict)

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