pub type PullRequestReviewDismissedEventReview<'a> = PullRequestReview<'a>;
Aliased Type§
struct PullRequestReviewDismissedEventReview<'a> {
pub id: usize,
pub node_id: &'a str,
pub user: User<'a>,
pub body: Option<&'a str>,
pub commit_id: &'a str,
pub submitted_at: Option<&'a str>,
pub state: PullRequestReviewState,
pub html_url: &'a str,
pub pull_request_url: &'a str,
pub author_association: AuthorAssociation,
pub _links: PullRequestReviewLinks<'a>,
}
Fields§
§id: usize
Unique identifier of the review
node_id: &'a str
§user: User<'a>
§body: Option<&'a str>
The text of the review.
commit_id: &'a str
A commit SHA for the review.
submitted_at: Option<&'a str>
§state: PullRequestReviewState
§html_url: &'a str
§pull_request_url: &'a str
§_links: PullRequestReviewLinks<'a>