Struct slack_api::usergroups::UpdateRequest [] [src]

pub struct UpdateRequest<'a> {
    pub usergroup: &'a str,
    pub name: Option<&'a str>,
    pub handle: Option<&'a str>,
    pub description: Option<&'a str>,
    pub channels: Option<&'a str>,
    pub include_count: Option<bool>,
}

Fields

The encoded ID of the User Group to update.

A name for the User Group. Must be unique among User Groups.

A mention handle. Must be unique among channels, users and User Groups.

A short description of the User Group.

A comma separated string of encoded channel IDs for which the User Group uses as a default.

Include the number of users in the User Group.

Trait Implementations

impl<'a> Clone for UpdateRequest<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Default for UpdateRequest<'a>
[src]

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

impl<'a> Debug for UpdateRequest<'a>
[src]

Formats the value using the given formatter.