Source code for swagger_server.models.role_label

# coding: utf-8

from __future__ import absolute_import
from datetime import date, datetime  # noqa: F401

from typing import List, Dict  # noqa: F401

from swagger_server.models.base_model_ import Model
from swagger_server import util


[docs]class RoleLabel(Model): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ def __init__(self): # noqa: E501 """RoleLabel - a model defined in Swagger """ self.swagger_types = { } self.attribute_map = { }
[docs] @classmethod def from_dict(cls, dikt) -> 'RoleLabel': """Returns the dict as a model :param dikt: A dict. :type: dict :return: The role_label of this RoleLabel. # noqa: E501 :rtype: RoleLabel """ return util.deserialize_model(dikt, cls)