# coding: utf-8 from __future__ import absolute_import from datetime import date, datetime # noqa: F401 from typing import List, Dict # noqa: F401 from src.models.base_model_ import Model from src import util class HealthInfo(Model): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ def __init__(self): # noqa: E501 """HealthInfo - a model defined in Swagger """ self.swagger_types = { } self.attribute_map = { } @classmethod def from_dict(cls, dikt): """Returns the dict as a model :param dikt: A dict. :type: dict :return: The HealthInfo of this HealthInfo. # noqa: E501 :rtype: HealthInfo """ return util.deserialize_model(dikt, cls)