Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.64 KB

File metadata and controls

33 lines (24 loc) · 1.64 KB

ProfileMappingTarget

The parameter is the target 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 target is Okta and the UserTypes feature isn't enabled, then the target _links only has a link to the schema.

Properties

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]

Example

from okta.models.profile_mapping_target import ProfileMappingTarget

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

# convert the object into a dict
profile_mapping_target_dict = profile_mapping_target_instance.to_dict()
# create an instance of ProfileMappingTarget from a dict
profile_mapping_target_from_dict = ProfileMappingTarget.from_dict(profile_mapping_target_dict)

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