| Name | Type | Description | Notes |
|---|---|---|---|
| mapping_id | str | Mapping Identifier | |
| name | str | Name of Mapping | [optional] |
| description | str | Description of Mapping | [optional] |
| attributes | List[MappingAttribute] | List of attributes | [optional] |
| classifications | List[MappingClassification] | List of classifications | [optional] |
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)