Struct gitlab::webhooks::IssueHookAttrs [] [src]

pub struct IssueHookAttrs {
    pub id: IssueId,
    pub title: String,
    pub assignee_id: Option<UserId>,
    pub author_id: UserId,
    pub project_id: ProjectId,
    pub created_at: HookDate,
    pub updated_at: HookDate,
    pub deleted_at: Option<HookDate>,
    pub due_date: Option<NaiveDate>,
    pub updated_by_id: Option<UserId>,
    pub moved_to_id: Option<Value>,
    pub position: u64,
    pub branch_name: Option<String>,
    pub description: String,
    pub milestone_id: Option<MilestoneId>,
    pub state: IssueState,
    pub iid: u64,
    pub confidential: bool,
    pub url: Option<String>,
    pub action: Option<IssueAction>,
}

Issue information exposed in hooks.

Fields

The ID of the issue.

The title of the issue.

The ID of the assignee of the issue.

The ID of the author of the issue.

The ID of the project.

When the issue was created.

When the issue was last updated.

When the issue was deleted.

When the issue is due.

The ID of the user which last updated the issue.

The branch name for the issue.

The description of the issue.

The ID of the milestone of the issue.

The state of the issue.

The user-visible ID of the issue.

Whether the issue is confidential or not.

The URL of the issue.

The type of action which caused the hook.

Trait Implementations

impl Debug for IssueHookAttrs
[src]

Formats the value using the given formatter.

impl Clone for IssueHookAttrs
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more