A target property, in string form, that maps to a valid JSON Schema Draft document.
| 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] |
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)