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

The OpenAPI schema can be found at - /components/schemas/project-card - /components/schemas/validation-error - /components/schemas/validation-error-simple - /paths/”/projects/columns/{column_id}/cards”/post/responses/503/content/”application/json”/schema

A CompletableGithubObject can be partially initialised (completed=False). Accessing attributes that are not initialized will then trigger a request to complete all attributes.

A partially initialized CompletableGithubObject (completed=False) can be completed via complete(). This requires the url to be given via parameter url or attributes.

With a requester where Requester.is_lazy == True, this CompletableGithubObjects is partially initialized. This requires the url to be given via parameter url or attributes. Any CompletableGithubObject created from this lazy object will be lazy itself if created with parameter url or attributes.

Parameters
  • requester – requester

  • headers – response headers

  • attributes – attributes to initialize

  • completed – do not update non-initialized attributes when True

  • url – url of this instance, overrides attributes[‘url’]

  • accept – use this accept header when completing this instance

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}