pub struct ChecksUpdateRequest {
pub name: Option<String>,
pub details_url: Option<String>,
pub external_id: Option<String>,
pub started_at: Option<String>,
pub status: Option<Status>,
pub conclusion: Option<Conclusion>,
pub completed_at: Option<String>,
pub output: Option<Box<ChecksUpdateRequestOutput>>,
pub actions: Option<Vec<ChecksCreateRequestActionsInner>>,
}Fields§
§name: Option<String>The name of the check. For example, "code-coverage".
details_url: Option<String>The URL of the integrator’s site that has the full details of the check.
external_id: Option<String>A reference for the run on the integrator’s system.
started_at: Option<String>This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
status: Option<Status>The current status of the check run. Only GitHub Actions can set a status of waiting, pending, or requested.
conclusion: Option<Conclusion>Required if you provide completed_at or a status of completed. The final conclusion of the check. Note: Providing conclusion will automatically set the status parameter to completed. You cannot change a check run conclusion to stale, only GitHub can set this.
completed_at: Option<String>The time the check completed. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
output: Option<Box<ChecksUpdateRequestOutput>>§actions: Option<Vec<ChecksCreateRequestActionsInner>>Possible further actions the integrator can perform, which a user may trigger. Each action includes a label, identifier and description. A maximum of three actions are accepted. To learn more about check runs and requested actions, see "Check runs and requested actions."
Implementations§
Source§impl ChecksUpdateRequest
impl ChecksUpdateRequest
pub fn new() -> ChecksUpdateRequest
Trait Implementations§
Source§impl Clone for ChecksUpdateRequest
impl Clone for ChecksUpdateRequest
Source§fn clone(&self) -> ChecksUpdateRequest
fn clone(&self) -> ChecksUpdateRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more