Struct gitlab::systemhooks::GroupSystemHook[][src]

pub struct GroupSystemHook {
    pub event_name: GroupEvent,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub name: String,
    pub path: String,
    pub group_id: GroupId,
    pub owner_email: Option<String>,
    pub owner_name: Option<String>,
}

A group hook.

Fields

The event which occurred.

When the group was created.

When the group was last updated.

The name of the group.

The path of the group (used for URLs).

The ID of the group.

The email address of the owner of the group.

The name of the owner of the group.

Trait Implementations

impl Debug for GroupSystemHook
[src]

Formats the value using the given formatter. Read more

impl Clone for GroupSystemHook
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations