ProjectCard

class github.ProjectCard.ProjectCard

This class represents Project Cards.

The reference can be found here https://docs.github.com/en/rest/reference/projects#cards

get_content(content_type: Opt[str] = NotSet) → github.PullRequest.PullRequest | github.Issue.Issue | None
Calls

GET /repos/{owner}/{repo}/pulls/{number}

move(position: str, column: github.ProjectColumn.ProjectColumn | int) → bool
Calls

POST /projects/columns/cards/{card_id}/moves

delete() → bool
Calls

DELETE /projects/columns/cards/{card_id}

edit(note: Union[str, github.GithubObject._NotSetType] = NotSet, archived: Union[bool, github.GithubObject._NotSetType] = NotSet) → None
Calls

PATCH /projects/columns/cards/{card_id}