MCPcopy Create free account
hub / github.com/bevyengine/bevy-website / GithubIssuesResponse

Class GithubIssuesResponse

generate-release/src/github_client.rs:80–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78
79#[derive(Deserialize, Clone, Debug)]
80pub struct GithubIssuesResponse {
81 pub title: String,
82 pub number: u64,
83 pub body: Option<String>,
84 pub labels: Vec<GithubLabel>,
85 pub user: GithubUser,
86 pub closed_at: Option<DateTime<Utc>>,
87 pub pull_request: Option<GithubIssuesResponsePullRequest>,
88}
89
90/// See the [response schema](https://docs.github.com/en/rest/issues/issues?apiVersion=2022-11-28#create-an-issue)
91///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected