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

x/kd_clients/core/IIssueOrPRRequestData.ts>IIssueOrPRRequestData

Various types of HTTP clients for misc uses. This is used in the organization's infrastructure.
Go to Latest
interface IIssueOrPRRequestData
import { type IIssueOrPRRequestData } from "https://deno.land/x/kd_clients@v0.0.5/core/IIssueOrPRRequestData.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.