We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db8282a commit 2edc6eaCopy full SHA for 2edc6ea
src/models/checks.rs
@@ -42,13 +42,13 @@ pub struct ListCheckRuns {
42
pub struct CheckSuite {
43
pub id: CheckSuiteId,
44
pub node_id: String,
45
- pub head_branch: String,
+ pub head_branch: Option<String>,
46
pub head_sha: String,
47
pub status: Option<String>,
48
pub conclusion: Option<String>,
49
- pub url: String,
50
- pub before: String,
51
- pub after: String,
+ pub url: Option<String>,
+ pub before: Option<String>,
+ pub after: Option<String>,
52
app: Option<App>,
53
pub repository: Repository,
54
pub created_at: chrono::DateTime<chrono::Utc>,
0 commit comments