1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
############################ Copyrights and license ############################
# #
# Copyright 2024 Pasha Fateev <pasha@autokitteh.com> #
# Copyright 2025 Enrico Minack <github@enrico.minack.dev> #
# #
# This file is part of PyGithub. #
# http://pygithub.readthedocs.io/ #
# #
# PyGithub is free software: you can redistribute it and/or modify it under #
# the terms of the GNU Lesser General Public License as published by the Free #
# Software Foundation, either version 3 of the License, or (at your option) #
# any later version. #
# #
# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
# details. #
# #
# You should have received a copy of the GNU Lesser General Public License #
# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
# #
################################################################################
from __future__ import annotations
from datetime import datetime
from typing import Any
import github.NamedUser
import github.Team
from github.GithubObject import Attribute, NonCompletableGithubObject, NotSet, _NotSetType
class CopilotSeat(NonCompletableGithubObject):
def _initAttributes(self) -> None:
self._created_at: Attribute[datetime] | _NotSetType = NotSet
self._updated_at: Attribute[datetime] | _NotSetType = NotSet
self._pending_cancellation_date: Attribute[datetime] | _NotSetType = NotSet
self._last_activity_at: Attribute[datetime] | _NotSetType = NotSet
self._last_activity_editor: Attribute[str] | _NotSetType = NotSet
self._plan_type: Attribute[str] | _NotSetType = NotSet
self._assignee: Attribute[github.NamedUser.NamedUser] | _NotSetType = NotSet
self._assigning_team: Attribute[github.Team.Team] | _NotSetType = NotSet
def _useAttributes(self, attributes: dict[str, Any]) -> None:
if "created_at" in attributes:
self._created_at = self._makeDatetimeAttribute(attributes["created_at"])
if "updated_at" in attributes:
self._updated_at = self._makeDatetimeAttribute(attributes["updated_at"])
if "pending_cancellation_date" in attributes:
self._pending_cancellation_date = self._makeDatetimeAttribute(attributes["pending_cancellation_date"])
if "last_activity_at" in attributes:
self._last_activity_at = self._makeDatetimeAttribute(attributes["last_activity_at"])
if "last_activity_editor" in attributes:
self._last_activity_editor = self._makeStringAttribute(attributes["last_activity_editor"])
if "plan_type" in attributes:
self._plan_type = self._makeStringAttribute(attributes["plan_type"])
if "assignee" in attributes:
self._assignee = self._makeClassAttribute(github.NamedUser.NamedUser, attributes["assignee"])
if "assigning_team" in attributes:
self._assigning_team = self._makeClassAttribute(github.Team.Team, attributes["assigning_team"])
def __repr__(self) -> str:
return self.get__repr__({"assignee": self._assignee.value})
@property
def created_at(self) -> datetime:
return self._created_at.value
@property
def updated_at(self) -> datetime:
return self._updated_at.value
@property
def pending_cancellation_date(self) -> datetime:
return self._pending_cancellation_date.value
@property
def last_activity_at(self) -> datetime:
return self._last_activity_at.value
@property
def last_activity_editor(self) -> str:
return self._last_activity_editor.value
@property
def plan_type(self) -> str:
return self._plan_type.value
@property
def assignee(self) -> github.NamedUser.NamedUser:
return self._assignee.value
@property
def assigning_team(self) -> github.Team.Team:
return self._assigning_team.value
|