Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

FunctionCapabilityResponse

Properties

Name Type Description Notes
capabilities List[str] The capabilities of the function

Example

from revengai.models.function_capability_response import FunctionCapabilityResponse

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

# convert the object into a dict
function_capability_response_dict = function_capability_response_instance.to_dict()
# create an instance of FunctionCapabilityResponse from a dict
function_capability_response_from_dict = FunctionCapabilityResponse.from_dict(function_capability_response_dict)

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