Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

ProfileMappingProperty

A target property, in string form, that maps to a valid JSON Schema Draft document.

Properties

Name Type Description Notes
expression str Combination or single source properties that are mapped to the target property. See Okta Expression Language. [optional]
push_status ProfileMappingPropertyPushStatus [optional]

Example

from okta.models.profile_mapping_property import ProfileMappingProperty

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

# convert the object into a dict
profile_mapping_property_dict = profile_mapping_property_instance.to_dict()
# create an instance of ProfileMappingProperty from a dict
profile_mapping_property_from_dict = ProfileMappingProperty.from_dict(profile_mapping_property_dict)

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