| |
- builtins.object
-
- ExtensionsDataset
class ExtensionsDataset(builtins.object) |
|
ExtensionsDataset(version: str, capabilities: ai_api_client_sdk.models.dataset_capabilities.DatasetCapabilities = None, limits: ai_api_client_sdk.models.dataset_limits.DatasetLimits = None, **kwargs)
The ExtensionsDataset object represents the metadata and capabilities of the Dataset API
:param version: Version of the Dataset API
:type version: str
:param capabilities: Capabilities of the Dataset API, defaults to None
:type capabilities: class:`ai_api_client_sdk.models.dataset_capabilities.DatasetCapabilities`, optional
:param limits: Limits of the Dataset API, defaults to None
:type limits: class:`ai_api_client_sdk.models.dataset_limits.DatasetLimits`, 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.dataset_capabilities.DatasetCapabilities = None, limits: ai_api_client_sdk.models.dataset_limits.DatasetLimits = None, **kwargs)
- Initialize self. See help(type(self)) for accurate signature.
- __str__(self)
- Return str(self).
Static methods defined here:
- from_dict(extensions_dataset_dict: Dict[str, Any])
- Returns a :class:`ai_api_client_sdk.models.extensions_dataset.ExtensionsDataset` object, created from the
values in the dict provided as parameter
:param extensions_dataset_dict: Dict which includes the necessary values to create the object
:type extensions_dataset_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.extensions_dataset.ExtensionsDataset`
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
| |