Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 992 Bytes

AddAttributeResponse.md

File metadata and controls

29 lines (20 loc) · 992 Bytes

AddAttributeResponse

Properties

Name Type Description Notes
message str Response Message [optional]

Example

from formkiq_client.models.add_attribute_response import AddAttributeResponse

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

# convert the object into a dict
add_attribute_response_dict = add_attribute_response_instance.to_dict()
# create an instance of AddAttributeResponse from a dict
add_attribute_response_from_dict = AddAttributeResponse.from_dict(add_attribute_response_dict)

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