You've already forked gitea_python_api
Init
This commit is contained in:
703
swagger_client/models/user.py
Normal file
703
swagger_client/models/user.py
Normal file
@@ -0,0 +1,703 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Gitea API
|
||||
|
||||
This documentation describes the Gitea API. # noqa: E501
|
||||
|
||||
OpenAPI spec version: 1.25.2
|
||||
|
||||
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
||||
"""
|
||||
|
||||
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
|
||||
import six
|
||||
|
||||
from swagger_client.configuration import Configuration
|
||||
|
||||
|
||||
class User(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 = {
|
||||
'active': 'bool',
|
||||
'avatar_url': 'str',
|
||||
'created': 'datetime',
|
||||
'description': 'str',
|
||||
'email': 'str',
|
||||
'followers_count': 'int',
|
||||
'following_count': 'int',
|
||||
'full_name': 'str',
|
||||
'html_url': 'str',
|
||||
'id': 'int',
|
||||
'is_admin': 'bool',
|
||||
'language': 'str',
|
||||
'last_login': 'datetime',
|
||||
'location': 'str',
|
||||
'login': 'str',
|
||||
'login_name': 'str',
|
||||
'prohibit_login': 'bool',
|
||||
'restricted': 'bool',
|
||||
'source_id': 'int',
|
||||
'starred_repos_count': 'int',
|
||||
'visibility': 'str',
|
||||
'website': 'str'
|
||||
}
|
||||
|
||||
attribute_map = {
|
||||
'active': 'active',
|
||||
'avatar_url': 'avatar_url',
|
||||
'created': 'created',
|
||||
'description': 'description',
|
||||
'email': 'email',
|
||||
'followers_count': 'followers_count',
|
||||
'following_count': 'following_count',
|
||||
'full_name': 'full_name',
|
||||
'html_url': 'html_url',
|
||||
'id': 'id',
|
||||
'is_admin': 'is_admin',
|
||||
'language': 'language',
|
||||
'last_login': 'last_login',
|
||||
'location': 'location',
|
||||
'login': 'login',
|
||||
'login_name': 'login_name',
|
||||
'prohibit_login': 'prohibit_login',
|
||||
'restricted': 'restricted',
|
||||
'source_id': 'source_id',
|
||||
'starred_repos_count': 'starred_repos_count',
|
||||
'visibility': 'visibility',
|
||||
'website': 'website'
|
||||
}
|
||||
|
||||
def __init__(self, active=None, avatar_url=None, created=None, description=None, email=None, followers_count=None, following_count=None, full_name=None, html_url=None, id=None, is_admin=None, language=None, last_login=None, location=None, login=None, login_name='empty', prohibit_login=None, restricted=None, source_id=None, starred_repos_count=None, visibility=None, website=None, _configuration=None): # noqa: E501
|
||||
"""User - a model defined in Swagger""" # noqa: E501
|
||||
if _configuration is None:
|
||||
_configuration = Configuration()
|
||||
self._configuration = _configuration
|
||||
|
||||
self._active = None
|
||||
self._avatar_url = None
|
||||
self._created = None
|
||||
self._description = None
|
||||
self._email = None
|
||||
self._followers_count = None
|
||||
self._following_count = None
|
||||
self._full_name = None
|
||||
self._html_url = None
|
||||
self._id = None
|
||||
self._is_admin = None
|
||||
self._language = None
|
||||
self._last_login = None
|
||||
self._location = None
|
||||
self._login = None
|
||||
self._login_name = None
|
||||
self._prohibit_login = None
|
||||
self._restricted = None
|
||||
self._source_id = None
|
||||
self._starred_repos_count = None
|
||||
self._visibility = None
|
||||
self._website = None
|
||||
self.discriminator = None
|
||||
|
||||
if active is not None:
|
||||
self.active = active
|
||||
if avatar_url is not None:
|
||||
self.avatar_url = avatar_url
|
||||
if created is not None:
|
||||
self.created = created
|
||||
if description is not None:
|
||||
self.description = description
|
||||
if email is not None:
|
||||
self.email = email
|
||||
if followers_count is not None:
|
||||
self.followers_count = followers_count
|
||||
if following_count is not None:
|
||||
self.following_count = following_count
|
||||
if full_name is not None:
|
||||
self.full_name = full_name
|
||||
if html_url is not None:
|
||||
self.html_url = html_url
|
||||
if id is not None:
|
||||
self.id = id
|
||||
if is_admin is not None:
|
||||
self.is_admin = is_admin
|
||||
if language is not None:
|
||||
self.language = language
|
||||
if last_login is not None:
|
||||
self.last_login = last_login
|
||||
if location is not None:
|
||||
self.location = location
|
||||
if login is not None:
|
||||
self.login = login
|
||||
if login_name is not None:
|
||||
self.login_name = login_name
|
||||
if prohibit_login is not None:
|
||||
self.prohibit_login = prohibit_login
|
||||
if restricted is not None:
|
||||
self.restricted = restricted
|
||||
if source_id is not None:
|
||||
self.source_id = source_id
|
||||
if starred_repos_count is not None:
|
||||
self.starred_repos_count = starred_repos_count
|
||||
if visibility is not None:
|
||||
self.visibility = visibility
|
||||
if website is not None:
|
||||
self.website = website
|
||||
|
||||
@property
|
||||
def active(self):
|
||||
"""Gets the active of this User. # noqa: E501
|
||||
|
||||
Is user active # noqa: E501
|
||||
|
||||
:return: The active of this User. # noqa: E501
|
||||
:rtype: bool
|
||||
"""
|
||||
return self._active
|
||||
|
||||
@active.setter
|
||||
def active(self, active):
|
||||
"""Sets the active of this User.
|
||||
|
||||
Is user active # noqa: E501
|
||||
|
||||
:param active: The active of this User. # noqa: E501
|
||||
:type: bool
|
||||
"""
|
||||
|
||||
self._active = active
|
||||
|
||||
@property
|
||||
def avatar_url(self):
|
||||
"""Gets the avatar_url of this User. # noqa: E501
|
||||
|
||||
URL to the user's avatar # noqa: E501
|
||||
|
||||
:return: The avatar_url of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._avatar_url
|
||||
|
||||
@avatar_url.setter
|
||||
def avatar_url(self, avatar_url):
|
||||
"""Sets the avatar_url of this User.
|
||||
|
||||
URL to the user's avatar # noqa: E501
|
||||
|
||||
:param avatar_url: The avatar_url of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._avatar_url = avatar_url
|
||||
|
||||
@property
|
||||
def created(self):
|
||||
"""Gets the created of this User. # noqa: E501
|
||||
|
||||
|
||||
:return: The created of this User. # noqa: E501
|
||||
:rtype: datetime
|
||||
"""
|
||||
return self._created
|
||||
|
||||
@created.setter
|
||||
def created(self, created):
|
||||
"""Sets the created of this User.
|
||||
|
||||
|
||||
:param created: The created of this User. # noqa: E501
|
||||
:type: datetime
|
||||
"""
|
||||
|
||||
self._created = created
|
||||
|
||||
@property
|
||||
def description(self):
|
||||
"""Gets the description of this User. # noqa: E501
|
||||
|
||||
the user's description # noqa: E501
|
||||
|
||||
:return: The description of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._description
|
||||
|
||||
@description.setter
|
||||
def description(self, description):
|
||||
"""Sets the description of this User.
|
||||
|
||||
the user's description # noqa: E501
|
||||
|
||||
:param description: The description of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._description = description
|
||||
|
||||
@property
|
||||
def email(self):
|
||||
"""Gets the email of this User. # noqa: E501
|
||||
|
||||
|
||||
:return: The email of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._email
|
||||
|
||||
@email.setter
|
||||
def email(self, email):
|
||||
"""Sets the email of this User.
|
||||
|
||||
|
||||
:param email: The email of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._email = email
|
||||
|
||||
@property
|
||||
def followers_count(self):
|
||||
"""Gets the followers_count of this User. # noqa: E501
|
||||
|
||||
user counts # noqa: E501
|
||||
|
||||
:return: The followers_count of this User. # noqa: E501
|
||||
:rtype: int
|
||||
"""
|
||||
return self._followers_count
|
||||
|
||||
@followers_count.setter
|
||||
def followers_count(self, followers_count):
|
||||
"""Sets the followers_count of this User.
|
||||
|
||||
user counts # noqa: E501
|
||||
|
||||
:param followers_count: The followers_count of this User. # noqa: E501
|
||||
:type: int
|
||||
"""
|
||||
|
||||
self._followers_count = followers_count
|
||||
|
||||
@property
|
||||
def following_count(self):
|
||||
"""Gets the following_count of this User. # noqa: E501
|
||||
|
||||
|
||||
:return: The following_count of this User. # noqa: E501
|
||||
:rtype: int
|
||||
"""
|
||||
return self._following_count
|
||||
|
||||
@following_count.setter
|
||||
def following_count(self, following_count):
|
||||
"""Sets the following_count of this User.
|
||||
|
||||
|
||||
:param following_count: The following_count of this User. # noqa: E501
|
||||
:type: int
|
||||
"""
|
||||
|
||||
self._following_count = following_count
|
||||
|
||||
@property
|
||||
def full_name(self):
|
||||
"""Gets the full_name of this User. # noqa: E501
|
||||
|
||||
the user's full name # noqa: E501
|
||||
|
||||
:return: The full_name of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._full_name
|
||||
|
||||
@full_name.setter
|
||||
def full_name(self, full_name):
|
||||
"""Sets the full_name of this User.
|
||||
|
||||
the user's full name # noqa: E501
|
||||
|
||||
:param full_name: The full_name of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._full_name = full_name
|
||||
|
||||
@property
|
||||
def html_url(self):
|
||||
"""Gets the html_url of this User. # noqa: E501
|
||||
|
||||
URL to the user's gitea page # noqa: E501
|
||||
|
||||
:return: The html_url of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._html_url
|
||||
|
||||
@html_url.setter
|
||||
def html_url(self, html_url):
|
||||
"""Sets the html_url of this User.
|
||||
|
||||
URL to the user's gitea page # noqa: E501
|
||||
|
||||
:param html_url: The html_url of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._html_url = html_url
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
"""Gets the id of this User. # noqa: E501
|
||||
|
||||
the user's id # noqa: E501
|
||||
|
||||
:return: The id of this User. # noqa: E501
|
||||
:rtype: int
|
||||
"""
|
||||
return self._id
|
||||
|
||||
@id.setter
|
||||
def id(self, id):
|
||||
"""Sets the id of this User.
|
||||
|
||||
the user's id # noqa: E501
|
||||
|
||||
:param id: The id of this User. # noqa: E501
|
||||
:type: int
|
||||
"""
|
||||
|
||||
self._id = id
|
||||
|
||||
@property
|
||||
def is_admin(self):
|
||||
"""Gets the is_admin of this User. # noqa: E501
|
||||
|
||||
Is the user an administrator # noqa: E501
|
||||
|
||||
:return: The is_admin of this User. # noqa: E501
|
||||
:rtype: bool
|
||||
"""
|
||||
return self._is_admin
|
||||
|
||||
@is_admin.setter
|
||||
def is_admin(self, is_admin):
|
||||
"""Sets the is_admin of this User.
|
||||
|
||||
Is the user an administrator # noqa: E501
|
||||
|
||||
:param is_admin: The is_admin of this User. # noqa: E501
|
||||
:type: bool
|
||||
"""
|
||||
|
||||
self._is_admin = is_admin
|
||||
|
||||
@property
|
||||
def language(self):
|
||||
"""Gets the language of this User. # noqa: E501
|
||||
|
||||
User locale # noqa: E501
|
||||
|
||||
:return: The language of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._language
|
||||
|
||||
@language.setter
|
||||
def language(self, language):
|
||||
"""Sets the language of this User.
|
||||
|
||||
User locale # noqa: E501
|
||||
|
||||
:param language: The language of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._language = language
|
||||
|
||||
@property
|
||||
def last_login(self):
|
||||
"""Gets the last_login of this User. # noqa: E501
|
||||
|
||||
|
||||
:return: The last_login of this User. # noqa: E501
|
||||
:rtype: datetime
|
||||
"""
|
||||
return self._last_login
|
||||
|
||||
@last_login.setter
|
||||
def last_login(self, last_login):
|
||||
"""Sets the last_login of this User.
|
||||
|
||||
|
||||
:param last_login: The last_login of this User. # noqa: E501
|
||||
:type: datetime
|
||||
"""
|
||||
|
||||
self._last_login = last_login
|
||||
|
||||
@property
|
||||
def location(self):
|
||||
"""Gets the location of this User. # noqa: E501
|
||||
|
||||
the user's location # noqa: E501
|
||||
|
||||
:return: The location of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._location
|
||||
|
||||
@location.setter
|
||||
def location(self, location):
|
||||
"""Sets the location of this User.
|
||||
|
||||
the user's location # noqa: E501
|
||||
|
||||
:param location: The location of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._location = location
|
||||
|
||||
@property
|
||||
def login(self):
|
||||
"""Gets the login of this User. # noqa: E501
|
||||
|
||||
login of the user, same as `username` # noqa: E501
|
||||
|
||||
:return: The login of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._login
|
||||
|
||||
@login.setter
|
||||
def login(self, login):
|
||||
"""Sets the login of this User.
|
||||
|
||||
login of the user, same as `username` # noqa: E501
|
||||
|
||||
:param login: The login of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._login = login
|
||||
|
||||
@property
|
||||
def login_name(self):
|
||||
"""Gets the login_name of this User. # noqa: E501
|
||||
|
||||
identifier of the user, provided by the external authenticator (if configured) # noqa: E501
|
||||
|
||||
:return: The login_name of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._login_name
|
||||
|
||||
@login_name.setter
|
||||
def login_name(self, login_name):
|
||||
"""Sets the login_name of this User.
|
||||
|
||||
identifier of the user, provided by the external authenticator (if configured) # noqa: E501
|
||||
|
||||
:param login_name: The login_name of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._login_name = login_name
|
||||
|
||||
@property
|
||||
def prohibit_login(self):
|
||||
"""Gets the prohibit_login of this User. # noqa: E501
|
||||
|
||||
Is user login prohibited # noqa: E501
|
||||
|
||||
:return: The prohibit_login of this User. # noqa: E501
|
||||
:rtype: bool
|
||||
"""
|
||||
return self._prohibit_login
|
||||
|
||||
@prohibit_login.setter
|
||||
def prohibit_login(self, prohibit_login):
|
||||
"""Sets the prohibit_login of this User.
|
||||
|
||||
Is user login prohibited # noqa: E501
|
||||
|
||||
:param prohibit_login: The prohibit_login of this User. # noqa: E501
|
||||
:type: bool
|
||||
"""
|
||||
|
||||
self._prohibit_login = prohibit_login
|
||||
|
||||
@property
|
||||
def restricted(self):
|
||||
"""Gets the restricted of this User. # noqa: E501
|
||||
|
||||
Is user restricted # noqa: E501
|
||||
|
||||
:return: The restricted of this User. # noqa: E501
|
||||
:rtype: bool
|
||||
"""
|
||||
return self._restricted
|
||||
|
||||
@restricted.setter
|
||||
def restricted(self, restricted):
|
||||
"""Sets the restricted of this User.
|
||||
|
||||
Is user restricted # noqa: E501
|
||||
|
||||
:param restricted: The restricted of this User. # noqa: E501
|
||||
:type: bool
|
||||
"""
|
||||
|
||||
self._restricted = restricted
|
||||
|
||||
@property
|
||||
def source_id(self):
|
||||
"""Gets the source_id of this User. # noqa: E501
|
||||
|
||||
The ID of the user's Authentication Source # noqa: E501
|
||||
|
||||
:return: The source_id of this User. # noqa: E501
|
||||
:rtype: int
|
||||
"""
|
||||
return self._source_id
|
||||
|
||||
@source_id.setter
|
||||
def source_id(self, source_id):
|
||||
"""Sets the source_id of this User.
|
||||
|
||||
The ID of the user's Authentication Source # noqa: E501
|
||||
|
||||
:param source_id: The source_id of this User. # noqa: E501
|
||||
:type: int
|
||||
"""
|
||||
|
||||
self._source_id = source_id
|
||||
|
||||
@property
|
||||
def starred_repos_count(self):
|
||||
"""Gets the starred_repos_count of this User. # noqa: E501
|
||||
|
||||
|
||||
:return: The starred_repos_count of this User. # noqa: E501
|
||||
:rtype: int
|
||||
"""
|
||||
return self._starred_repos_count
|
||||
|
||||
@starred_repos_count.setter
|
||||
def starred_repos_count(self, starred_repos_count):
|
||||
"""Sets the starred_repos_count of this User.
|
||||
|
||||
|
||||
:param starred_repos_count: The starred_repos_count of this User. # noqa: E501
|
||||
:type: int
|
||||
"""
|
||||
|
||||
self._starred_repos_count = starred_repos_count
|
||||
|
||||
@property
|
||||
def visibility(self):
|
||||
"""Gets the visibility of this User. # noqa: E501
|
||||
|
||||
User visibility level option: public, limited, private # noqa: E501
|
||||
|
||||
:return: The visibility of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._visibility
|
||||
|
||||
@visibility.setter
|
||||
def visibility(self, visibility):
|
||||
"""Sets the visibility of this User.
|
||||
|
||||
User visibility level option: public, limited, private # noqa: E501
|
||||
|
||||
:param visibility: The visibility of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._visibility = visibility
|
||||
|
||||
@property
|
||||
def website(self):
|
||||
"""Gets the website of this User. # noqa: E501
|
||||
|
||||
the user's website # noqa: E501
|
||||
|
||||
:return: The website of this User. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._website
|
||||
|
||||
@website.setter
|
||||
def website(self, website):
|
||||
"""Sets the website of this User.
|
||||
|
||||
the user's website # noqa: E501
|
||||
|
||||
:param website: The website of this User. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._website = website
|
||||
|
||||
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(User, 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, User):
|
||||
return False
|
||||
|
||||
return self.to_dict() == other.to_dict()
|
||||
|
||||
def __ne__(self, other):
|
||||
"""Returns true if both objects are not equal"""
|
||||
if not isinstance(other, User):
|
||||
return True
|
||||
|
||||
return self.to_dict() != other.to_dict()
|
||||
Reference in New Issue
Block a user