ProjectColumn¶
-
class
github.ProjectColumn.ProjectColumn¶ This class represents Project Columns. The reference can be found here https://docs.github.com/en/rest/reference/projects#columns
-
get_cards(archived_state: Union[str, github.GithubObject._NotSetType] = NotSet) → github.PaginatedList.PaginatedList[github.ProjectCard.ProjectCard][github.ProjectCard.ProjectCard]¶ Calls: GET /projects/columns/{column_id}/cards
-
create_card(note: Union[str, github.GithubObject._NotSetType] = NotSet, content_id: Union[int, github.GithubObject._NotSetType] = NotSet, content_type: Union[str, github.GithubObject._NotSetType] = NotSet) → github.ProjectCard.ProjectCard¶ Calls: POST /projects/columns/{column_id}/cards
-
move(position: str) → bool¶ Calls: POST POST /projects/columns/{column_id}/moves
-
delete() → bool¶ Calls: DELETE /projects/columns/{column_id}
-
edit(name: str) → None¶ Calls: PATCH /projects/columns/{column_id}
-