PrimitiveTypeValue
Properties
Example
from polaris.catalog.models.primitive_type_value import PrimitiveTypeValue
# TODO update the JSON string below
json = "{}"
# create an instance of PrimitiveTypeValue from a JSON string
primitive_type_value_instance = PrimitiveTypeValue.from_json(json)
# print the JSON string representation of the object
print(PrimitiveTypeValue.to_json())
# convert the object into a dict
primitive_type_value_dict = primitive_type_value_instance.to_dict()
# create an instance of PrimitiveTypeValue from a dict
primitive_type_value_from_dict = PrimitiveTypeValue.from_dict(primitive_type_value_dict)
[Back to Model list] [Back to API list] [Back to README]