Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 949 Bytes

V1Call.md

File metadata and controls

31 lines (22 loc) · 949 Bytes

V1Call

Call represents a call to a rule. It includes the name of the rule and the arguments passed to it.

Properties

Name Type Description Notes
rule_name str [optional]
arguments List[Argument] [optional]

Example

from permify.models.v1_call import V1Call

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

# convert the object into a dict
v1_call_dict = v1_call_instance.to_dict()
# create an instance of V1Call from a dict
v1_call_from_dict = V1Call.from_dict(v1_call_dict)

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