ai_api_client_sdk.models.parameter
index
/home/jenkins/agent/workspace/ndation_ai-api-client-sdk_master/ai_api_client_sdk/models/parameter.py

 
Classes
       
builtins.object
Parameter

 
class Parameter(builtins.object)
    Parameter(name: str, type: ai_api_client_sdk.models.parameter.Parameter.Type, **kwargs)
 
The Parameter object defines the parameter specified in the executable definition.
 
:param name: name of the parameter
:type name: str
:param type: Type of the parameter
:type type: class:`ai_api_client_sdk.models.parameter.Parameter.Type`
: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, name: str, type: ai_api_client_sdk.models.parameter.Parameter.Type, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__str__(self)
Return str(self).

Static methods defined here:
from_dict(parameter_dict: Dict[str, Any])
Returns a :class:`ai_api_client_sdk.models.parameter.Parameterobject, created from the values in the dict
provided as parameter
 
:param parameter_dict: Dict which includes the necessary values to create the object
:type parameter_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.parameter.Parameter`

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:
Type = <enum 'Type'>
An enumeration.
__hash__ = None

 
Data
        Any = typing.Any
Dict = typing.Dict