Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kd_clients/core/IssueOrPRRequestData.ts>IssueOrPRRequestData

Various HTTP clients for miscellaneous use.
Latest
interface IssueOrPRRequestData
import { type IssueOrPRRequestData } from "https://deno.land/x/kd_clients@v1.0.0-preview.13/core/IssueOrPRRequestData.ts";

Represents the body of an HTTP GitHub API issue request. Used to update an issue or pull request.

Properties

optional
title: string | null | number

Gets or sets the title of the issue.

optional
body: string | null

Gets or sets the contents of the issue.

optional
state: IssueState

Gets or sets the state of the issue.

optional
state_reason: StateReason | null

Gets or sets the reason for the state change.

optional
milestone: string | number | null

Gets or sets the number of the milestone to associate the issue with.

optional
labels: string[]

Gets or sets the labels associated with this issue.

optional
assignees: string[]

Gets or sets the usernames to assign to this issue.