Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

RequestCustomFieldResponse.md

File metadata and controls

31 lines (22 loc) · 1.23 KB

RequestCustomFieldResponse

Properties

Name Type Description Notes
field_name str
field_type RequestTemplateCustomFieldTypeEnum
field_value RequestCustomFieldResponseFieldValue

Example

from opal_security.models.request_custom_field_response import RequestCustomFieldResponse

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

# convert the object into a dict
request_custom_field_response_dict = request_custom_field_response_instance.to_dict()
# create an instance of RequestCustomFieldResponse from a dict
request_custom_field_response_from_dict = RequestCustomFieldResponse.from_dict(request_custom_field_response_dict)

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