DateType¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
date32 |
str |
Example¶
from graphscope.flex.rest.models.date_type import DateType
# TODO update the JSON string below
json = "{}"
# create an instance of DateType from a JSON string
date_type_instance = DateType.from_json(json)
# print the JSON string representation of the object
print(DateType.to_json())
# convert the object into a dict
date_type_dict = date_type_instance.to_dict()
# create an instance of DateType from a dict
date_type_from_dict = DateType.from_dict(date_type_dict)