Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 959 Bytes

Argument.md

File metadata and controls

30 lines (21 loc) · 959 Bytes

Argument

Argument defines the type of argument in a Call. It can be either a ComputedAttribute or a ContextAttribute.

Properties

Name Type Description Notes
computed_attribute ComputedAttribute [optional]

Example

from permify.models.argument import Argument

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

# convert the object into a dict
argument_dict = argument_instance.to_dict()
# create an instance of Argument from a dict
argument_from_dict = Argument.from_dict(argument_dict)

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