pub type CommitCommentEvent<'a> = CommitCommentCreatedEvent<'a>;

Aliased Type§

struct CommitCommentEvent<'a> {
    pub comment: CommitCommentCreatedEventComment<'a>,
    pub repository: Repository<'a>,
    pub sender: User<'a>,
    pub installation: Option<InstallationLite<'a>>,
    pub organization: Option<Organization<'a>>,
}

Fields§

§comment: CommitCommentCreatedEventComment<'a>

The commit comment resource.

§repository: Repository<'a>§sender: User<'a>§installation: Option<InstallationLite<'a>>§organization: Option<Organization<'a>>