Struct rusoto_codecommit::PullRequest[][src]

pub struct PullRequest {
    pub author_arn: Option<String>,
    pub client_request_token: Option<String>,
    pub creation_date: Option<f64>,
    pub description: Option<String>,
    pub last_activity_date: Option<f64>,
    pub pull_request_id: Option<String>,
    pub pull_request_status: Option<String>,
    pub pull_request_targets: Option<Vec<PullRequestTarget>>,
    pub title: Option<String>,
}

Returns information about a pull request.

Fields

The Amazon Resource Name (ARN) of the user who created the pull request.

A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.

The date and time the pull request was originally created, in timestamp format.

The user-defined description of the pull request. This description can be used to clarify what should be reviewed and other details of the request.

The day and time of the last user or system activity on the pull request, in timestamp format.

The system-generated ID of the pull request.

The status of the pull request. Pull request status can only change from OPEN to CLOSED.

The targets of the pull request, including the source branch and destination branch for the pull request.

The user-defined title of the pull request. This title is displayed in the list of pull requests to other users of the repository.

Trait Implementations

impl Default for PullRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for PullRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for PullRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PullRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for PullRequest

impl Sync for PullRequest