Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

AddClassificationResponse.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

AddClassificationResponse

Properties

Name Type Description Notes
classification_id str Classification Identifier [optional]

Example

from formkiq_client.models.add_classification_response import AddClassificationResponse

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

# convert the object into a dict
add_classification_response_dict = add_classification_response_instance.to_dict()
# create an instance of AddClassificationResponse from a dict
add_classification_response_from_dict = AddClassificationResponse.from_dict(add_classification_response_dict)

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