The parameter is the source of a profile mapping and is a valid JSON Schema Draft 4 document with the following properties. The data type can be an app instance or an Okta object. > Note: If the source is Okta and the UserTypes feature isn't enabled, then the source _links only has a link to the schema.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique identifier for the application instance or userType | [optional] [readonly] |
| name | str | Variable name of the application instance or name of the referenced UserType | [optional] [readonly] |
| type | str | Type of user referenced in the mapping | [optional] [readonly] |
| links | SourceLinks | [optional] |
from okta.models.profile_mapping_source import ProfileMappingSource
# TODO update the JSON string below
json = "{}"
# create an instance of ProfileMappingSource from a JSON string
profile_mapping_source_instance = ProfileMappingSource.from_json(json)
# print the JSON string representation of the object
print(ProfileMappingSource.to_json())
# convert the object into a dict
profile_mapping_source_dict = profile_mapping_source_instance.to_dict()
# create an instance of ProfileMappingSource from a dict
profile_mapping_source_from_dict = ProfileMappingSource.from_dict(profile_mapping_source_dict)