Function type with result and arg types.
Name | Type | Description | Notes |
---|---|---|---|
result_type | V1alpha1Type | [optional] | |
arg_types | List[V1alpha1Type] | Argument types of the function. | [optional] |
from permify.models.function_type import FunctionType
# TODO update the JSON string below
json = "{}"
# create an instance of FunctionType from a JSON string
function_type_instance = FunctionType.from_json(json)
# print the JSON string representation of the object
print(FunctionType.to_json())
# convert the object into a dict
function_type_dict = function_type_instance.to_dict()
# create an instance of FunctionType from a dict
function_type_from_dict = FunctionType.from_dict(function_type_dict)