-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CH-109 applications dependencies update
- Loading branch information
Showing
5 changed files
with
129 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
applications/common/server/common/models/get_config200_response.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# coding: utf-8 | ||
|
||
from __future__ import absolute_import | ||
from datetime import date, datetime # noqa: F401 | ||
|
||
from typing import List, Dict # noqa: F401 | ||
|
||
from common.models.base_model_ import Model | ||
from common import util | ||
|
||
|
||
class GetConfig200Response(Model): | ||
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
Do not edit the class manually. | ||
""" | ||
|
||
def __init__(self, url=None, realm=None, client_id=None): # noqa: E501 | ||
"""GetConfig200Response - a model defined in OpenAPI | ||
:param url: The url of this GetConfig200Response. # noqa: E501 | ||
:type url: str | ||
:param realm: The realm of this GetConfig200Response. # noqa: E501 | ||
:type realm: str | ||
:param client_id: The client_id of this GetConfig200Response. # noqa: E501 | ||
:type client_id: str | ||
""" | ||
self.openapi_types = { | ||
'url': str, | ||
'realm': str, | ||
'client_id': str | ||
} | ||
|
||
self.attribute_map = { | ||
'url': 'url', | ||
'realm': 'realm', | ||
'client_id': 'clientId' | ||
} | ||
|
||
self._url = url | ||
self._realm = realm | ||
self._client_id = client_id | ||
|
||
@classmethod | ||
def from_dict(cls, dikt) -> 'GetConfig200Response': | ||
"""Returns the dict as a model | ||
:param dikt: A dict. | ||
:type: dict | ||
:return: The get_config_200_response of this GetConfig200Response. # noqa: E501 | ||
:rtype: GetConfig200Response | ||
""" | ||
return util.deserialize_model(dikt, cls) | ||
|
||
@property | ||
def url(self): | ||
"""Gets the url of this GetConfig200Response. | ||
The auth URL. # noqa: E501 | ||
:return: The url of this GetConfig200Response. | ||
:rtype: str | ||
""" | ||
return self._url | ||
|
||
@url.setter | ||
def url(self, url): | ||
"""Sets the url of this GetConfig200Response. | ||
The auth URL. # noqa: E501 | ||
:param url: The url of this GetConfig200Response. | ||
:type url: str | ||
""" | ||
|
||
self._url = url | ||
|
||
@property | ||
def realm(self): | ||
"""Gets the realm of this GetConfig200Response. | ||
The realm. # noqa: E501 | ||
:return: The realm of this GetConfig200Response. | ||
:rtype: str | ||
""" | ||
return self._realm | ||
|
||
@realm.setter | ||
def realm(self, realm): | ||
"""Sets the realm of this GetConfig200Response. | ||
The realm. # noqa: E501 | ||
:param realm: The realm of this GetConfig200Response. | ||
:type realm: str | ||
""" | ||
|
||
self._realm = realm | ||
|
||
@property | ||
def client_id(self): | ||
"""Gets the client_id of this GetConfig200Response. | ||
The clientID. # noqa: E501 | ||
:return: The client_id of this GetConfig200Response. | ||
:rtype: str | ||
""" | ||
return self._client_id | ||
|
||
@client_id.setter | ||
def client_id(self, client_id): | ||
"""Sets the client_id of this GetConfig200Response. | ||
The clientID. # noqa: E501 | ||
:param client_id: The client_id of this GetConfig200Response. | ||
:type client_id: str | ||
""" | ||
|
||
self._client_id = client_id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters