Example #1
0
    def from_dict(cls, dikt) -> 'Parameters':
        """Returns the dict as a model

        :param dikt: A dict.
        :type: dict
        :return: The Parameters of this Parameters.  # noqa: E501
        :rtype: Parameters
        """
        return util.deserialize_model(dikt, cls)
Example #2
0
    def from_dict(cls, dikt) -> 'JobStatus':
        """Returns the dict as a model

        :param dikt: A dict.
        :type: dict
        :return: The JobStatus of this JobStatus.  # noqa: E501
        :rtype: JobStatus
        """
        return util.deserialize_model(dikt, cls)
    def from_dict(cls, dikt) -> 'BIJobMatrix':
        """Returns the dict as a model

        :param dikt: A dict.
        :type: dict
        :return: The BIJobMatrix of this BIJobMatrix.  # noqa: E501
        :rtype: BIJobMatrix
        """
        return util.deserialize_model(dikt, cls)
Example #4
0
 def from_dict(cls: typing.Type[T], dikt) -> T:
     """Returns the dict as a model"""
     return util.deserialize_model(dikt, cls)