You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The virtual address of the function where the capability comes from
capabilities
List[str]
The list of capabilities associated with the function
Example
fromrevengai.models.app_api_rest_v2_info_types_capabilityimportAppApiRestV2InfoTypesCapability# TODO update the JSON string belowjson="{}"# create an instance of AppApiRestV2InfoTypesCapability from a JSON stringapp_api_rest_v2_info_types_capability_instance=AppApiRestV2InfoTypesCapability.from_json(json)
# print the JSON string representation of the objectprint(AppApiRestV2InfoTypesCapability.to_json())
# convert the object into a dictapp_api_rest_v2_info_types_capability_dict=app_api_rest_v2_info_types_capability_instance.to_dict()
# create an instance of AppApiRestV2InfoTypesCapability from a dictapp_api_rest_v2_info_types_capability_from_dict=AppApiRestV2InfoTypesCapability.from_dict(app_api_rest_v2_info_types_capability_dict)