Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

OpaPolicyInputMethod

Properties

Name Type Description Notes
var_in List[str] List of HTTP Methods [optional]
not_in List[str] List of HTTP Methods [optional]

Example

from formkiq_client.models.opa_policy_input_method import OpaPolicyInputMethod

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

# convert the object into a dict
opa_policy_input_method_dict = opa_policy_input_method_instance.to_dict()
# create an instance of OpaPolicyInputMethod from a dict
opa_policy_input_method_from_dict = OpaPolicyInputMethod.from_dict(opa_policy_input_method_dict)

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