Name | Type | Description | Notes |
---|---|---|---|
name | str | Name of Classification | [optional] |
user_id | str | [optional] | |
inserted_date | str | Inserted Timestamp | [optional] |
attributes | SchemaAttributes | [optional] |
from formkiq_client.models.classification import Classification
# TODO update the JSON string below
json = "{}"
# create an instance of Classification from a JSON string
classification_instance = Classification.from_json(json)
# print the JSON string representation of the object
print(Classification.to_json())
# convert the object into a dict
classification_dict = classification_instance.to_dict()
# create an instance of Classification from a dict
classification_from_dict = Classification.from_dict(classification_dict)