Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

Mapping.md

File metadata and controls

32 lines (23 loc) · 1.01 KB

Mapping

Properties

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

Example

from formkiq_client.models.mapping import Mapping

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

# convert the object into a dict
mapping_dict = mapping_instance.to_dict()
# create an instance of Mapping from a dict
mapping_from_dict = Mapping.from_dict(mapping_dict)

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