| |
- builtins.object
-
- AIAPIMeta
class AIAPIMeta(builtins.object) |
|
AIAPIMeta(version: str, capabilities: ai_api_client_sdk.models.ai_api_capabilities.AIAPICapabilities = None, limits: ai_api_client_sdk.models.ai_api_limits.AIAPILimits = None, **kwargs)
The AIAPIMeta object represents the metadata and capabilities of the AI API
:param version: version of the AI API
:type version: str
:param capabilities: capabilities of AI API, defaults to None
:type capabilities: class:`ai_api_client_sdk.models.ai_api_capabilities.AIAPICapabilities`
:param limits: limits of AI API, defaults to None
:type limits: class:`ai_api_client_sdk.models.ai_api_limits.AIAPILimits`, optional
:param `**kwargs`: The keyword arguments are there in case there are additional attributes returned from server |
|
Methods defined here:
- __eq__(self, other)
- Return self==value.
- __init__(self, version: str, capabilities: ai_api_client_sdk.models.ai_api_capabilities.AIAPICapabilities = None, limits: ai_api_client_sdk.models.ai_api_limits.AIAPILimits = None, **kwargs)
- Initialize self. See help(type(self)) for accurate signature.
- __str__(self)
- Return str(self).
Static methods defined here:
- from_dict(ai_api_meta_dict: Dict[str, Any])
- Returns a :class:`ai_api_client_sdk.models.ai_api_meta.AIAPIMeta` object, created
from the values in the dict provided as parameter
:param ai_api_meta_dict: Dict which includes the necessary values to create the object
:type ai_api_meta_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.ai_api_meta.AIAPIMeta`
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Data and other attributes defined here:
- __hash__ = None
| |