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
fromopal_security.models.request_custom_field_response_field_valueimportRequestCustomFieldResponseFieldValue# TODO update the JSON string belowjson="{}"# create an instance of RequestCustomFieldResponseFieldValue from a JSON stringrequest_custom_field_response_field_value_instance=RequestCustomFieldResponseFieldValue.from_json(json)
# print the JSON string representation of the objectprint(RequestCustomFieldResponseFieldValue.to_json())
# convert the object into a dictrequest_custom_field_response_field_value_dict=request_custom_field_response_field_value_instance.to_dict()
# create an instance of RequestCustomFieldResponseFieldValue from a dictrequest_custom_field_response_field_value_from_dict=RequestCustomFieldResponseFieldValue.from_dict(request_custom_field_response_field_value_dict)