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

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

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

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