Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.54 KB

File metadata and controls

34 lines (25 loc) · 1.54 KB

ProfileMapping

The Profile Mapping object describes a mapping between an Okta User's and an App User's properties using JSON Schema Draft 4. > Note: Same type source/target mappings aren't supported by this API. Profile mappings must either be Okta->App or App->Okta.

Properties

Name Type Description Notes
id str Unique identifier for a profile mapping [optional] [readonly]
properties Dict[str, ProfileMappingProperty] [optional]
source ProfileMappingSource [optional]
target ProfileMappingTarget [optional]
links LinksSelf [optional]

Example

from okta.models.profile_mapping import ProfileMapping

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

# convert the object into a dict
profile_mapping_dict = profile_mapping_instance.to_dict()
# create an instance of ProfileMapping from a dict
profile_mapping_from_dict = ProfileMapping.from_dict(profile_mapping_dict)

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