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

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

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

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

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

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

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

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

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

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

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