Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1019 Bytes

AddMapping.md

File metadata and controls

31 lines (22 loc) · 1019 Bytes

AddMapping

Properties

Name Type Description Notes
name str Name of Mapping [optional]
description str Description of Mapping [optional]
attributes List[MappingAttribute] List of attributes [optional]

Example

from formkiq_client.models.add_mapping import AddMapping

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

# convert the object into a dict
add_mapping_dict = add_mapping_instance.to_dict()
# create an instance of AddMapping from a dict
add_mapping_from_dict = AddMapping.from_dict(add_mapping_dict)

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