|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +from __future__ import absolute_import |
| 4 | +from datetime import date, datetime # noqa: F401 |
| 5 | + |
| 6 | +from typing import List, Dict # noqa: F401 |
| 7 | + |
| 8 | +from common.models.base_model_ import Model |
| 9 | +from common import util |
| 10 | + |
| 11 | + |
| 12 | +class GetConfig200Response(Model): |
| 13 | + """NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 14 | +
|
| 15 | + Do not edit the class manually. |
| 16 | + """ |
| 17 | + |
| 18 | + def __init__(self, url=None, realm=None, client_id=None): # noqa: E501 |
| 19 | + """GetConfig200Response - a model defined in OpenAPI |
| 20 | +
|
| 21 | + :param url: The url of this GetConfig200Response. # noqa: E501 |
| 22 | + :type url: str |
| 23 | + :param realm: The realm of this GetConfig200Response. # noqa: E501 |
| 24 | + :type realm: str |
| 25 | + :param client_id: The client_id of this GetConfig200Response. # noqa: E501 |
| 26 | + :type client_id: str |
| 27 | + """ |
| 28 | + self.openapi_types = { |
| 29 | + 'url': str, |
| 30 | + 'realm': str, |
| 31 | + 'client_id': str |
| 32 | + } |
| 33 | + |
| 34 | + self.attribute_map = { |
| 35 | + 'url': 'url', |
| 36 | + 'realm': 'realm', |
| 37 | + 'client_id': 'clientId' |
| 38 | + } |
| 39 | + |
| 40 | + self._url = url |
| 41 | + self._realm = realm |
| 42 | + self._client_id = client_id |
| 43 | + |
| 44 | + @classmethod |
| 45 | + def from_dict(cls, dikt) -> 'GetConfig200Response': |
| 46 | + """Returns the dict as a model |
| 47 | +
|
| 48 | + :param dikt: A dict. |
| 49 | + :type: dict |
| 50 | + :return: The get_config_200_response of this GetConfig200Response. # noqa: E501 |
| 51 | + :rtype: GetConfig200Response |
| 52 | + """ |
| 53 | + return util.deserialize_model(dikt, cls) |
| 54 | + |
| 55 | + @property |
| 56 | + def url(self): |
| 57 | + """Gets the url of this GetConfig200Response. |
| 58 | +
|
| 59 | + The auth URL. # noqa: E501 |
| 60 | +
|
| 61 | + :return: The url of this GetConfig200Response. |
| 62 | + :rtype: str |
| 63 | + """ |
| 64 | + return self._url |
| 65 | + |
| 66 | + @url.setter |
| 67 | + def url(self, url): |
| 68 | + """Sets the url of this GetConfig200Response. |
| 69 | +
|
| 70 | + The auth URL. # noqa: E501 |
| 71 | +
|
| 72 | + :param url: The url of this GetConfig200Response. |
| 73 | + :type url: str |
| 74 | + """ |
| 75 | + |
| 76 | + self._url = url |
| 77 | + |
| 78 | + @property |
| 79 | + def realm(self): |
| 80 | + """Gets the realm of this GetConfig200Response. |
| 81 | +
|
| 82 | + The realm. # noqa: E501 |
| 83 | +
|
| 84 | + :return: The realm of this GetConfig200Response. |
| 85 | + :rtype: str |
| 86 | + """ |
| 87 | + return self._realm |
| 88 | + |
| 89 | + @realm.setter |
| 90 | + def realm(self, realm): |
| 91 | + """Sets the realm of this GetConfig200Response. |
| 92 | +
|
| 93 | + The realm. # noqa: E501 |
| 94 | +
|
| 95 | + :param realm: The realm of this GetConfig200Response. |
| 96 | + :type realm: str |
| 97 | + """ |
| 98 | + |
| 99 | + self._realm = realm |
| 100 | + |
| 101 | + @property |
| 102 | + def client_id(self): |
| 103 | + """Gets the client_id of this GetConfig200Response. |
| 104 | +
|
| 105 | + The clientID. # noqa: E501 |
| 106 | +
|
| 107 | + :return: The client_id of this GetConfig200Response. |
| 108 | + :rtype: str |
| 109 | + """ |
| 110 | + return self._client_id |
| 111 | + |
| 112 | + @client_id.setter |
| 113 | + def client_id(self, client_id): |
| 114 | + """Sets the client_id of this GetConfig200Response. |
| 115 | +
|
| 116 | + The clientID. # noqa: E501 |
| 117 | +
|
| 118 | + :param client_id: The client_id of this GetConfig200Response. |
| 119 | + :type client_id: str |
| 120 | + """ |
| 121 | + |
| 122 | + self._client_id = client_id |
0 commit comments