You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unique identifier of the condition. This should be used when defining conditions for a User Mapping
[optional]
Example
fromonelogin.models.list_mapping_conditions200_responseimportListMappingConditions200Response# TODO update the JSON string belowjson="{}"# create an instance of ListMappingConditions200Response from a JSON stringlist_mapping_conditions200_response_instance=ListMappingConditions200Response.from_json(json)
# print the JSON string representation of the objectprintListMappingConditions200Response.to_json()
# convert the object into a dictlist_mapping_conditions200_response_dict=list_mapping_conditions200_response_instance.to_dict()
# create an instance of ListMappingConditions200Response from a dictlist_mapping_conditions200_response_form_dict=list_mapping_conditions200_response.from_dict(list_mapping_conditions200_response_dict)