memos-script/memos/models/apiv1_identity_provider.py
2024-04-30 10:31:09 +08:00

215 lines
5.9 KiB
Python

# coding: utf-8
"""
api/v1/activity_service.proto
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
OpenAPI spec version: version not set
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re # noqa: F401
import six
class Apiv1IdentityProvider(object):
"""NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
"""
"""
Attributes:
swagger_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
swagger_types = {
'name': 'str',
'type': 'Apiv1IdentityProviderType',
'title': 'str',
'identifier_filter': 'str',
'config': 'Apiv1IdentityProviderConfig'
}
attribute_map = {
'name': 'name',
'type': 'type',
'title': 'title',
'identifier_filter': 'identifierFilter',
'config': 'config'
}
def __init__(self, name=None, type=None, title=None, identifier_filter=None, config=None): # noqa: E501
"""Apiv1IdentityProvider - a model defined in Swagger""" # noqa: E501
self._name = None
self._type = None
self._title = None
self._identifier_filter = None
self._config = None
self.discriminator = None
if name is not None:
self.name = name
if type is not None:
self.type = type
if title is not None:
self.title = title
if identifier_filter is not None:
self.identifier_filter = identifier_filter
if config is not None:
self.config = config
@property
def name(self):
"""Gets the name of this Apiv1IdentityProvider. # noqa: E501
:return: The name of this Apiv1IdentityProvider. # noqa: E501
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""Sets the name of this Apiv1IdentityProvider.
:param name: The name of this Apiv1IdentityProvider. # noqa: E501
:type: str
"""
self._name = name
@property
def type(self):
"""Gets the type of this Apiv1IdentityProvider. # noqa: E501
:return: The type of this Apiv1IdentityProvider. # noqa: E501
:rtype: Apiv1IdentityProviderType
"""
return self._type
@type.setter
def type(self, type):
"""Sets the type of this Apiv1IdentityProvider.
:param type: The type of this Apiv1IdentityProvider. # noqa: E501
:type: Apiv1IdentityProviderType
"""
self._type = type
@property
def title(self):
"""Gets the title of this Apiv1IdentityProvider. # noqa: E501
:return: The title of this Apiv1IdentityProvider. # noqa: E501
:rtype: str
"""
return self._title
@title.setter
def title(self, title):
"""Sets the title of this Apiv1IdentityProvider.
:param title: The title of this Apiv1IdentityProvider. # noqa: E501
:type: str
"""
self._title = title
@property
def identifier_filter(self):
"""Gets the identifier_filter of this Apiv1IdentityProvider. # noqa: E501
:return: The identifier_filter of this Apiv1IdentityProvider. # noqa: E501
:rtype: str
"""
return self._identifier_filter
@identifier_filter.setter
def identifier_filter(self, identifier_filter):
"""Sets the identifier_filter of this Apiv1IdentityProvider.
:param identifier_filter: The identifier_filter of this Apiv1IdentityProvider. # noqa: E501
:type: str
"""
self._identifier_filter = identifier_filter
@property
def config(self):
"""Gets the config of this Apiv1IdentityProvider. # noqa: E501
:return: The config of this Apiv1IdentityProvider. # noqa: E501
:rtype: Apiv1IdentityProviderConfig
"""
return self._config
@config.setter
def config(self, config):
"""Sets the config of this Apiv1IdentityProvider.
:param config: The config of this Apiv1IdentityProvider. # noqa: E501
:type: Apiv1IdentityProviderConfig
"""
self._config = config
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.swagger_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
result[attr] = value
if issubclass(Apiv1IdentityProvider, dict):
for key, value in self.items():
result[key] = value
return result
def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, Apiv1IdentityProvider):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other