Struct slack_api::team::IntegrationLogsRequest  
                   
                       [−]
                   
               [src]
pub struct IntegrationLogsRequest<'a> {
    pub service_id: Option<&'a str>,
    pub app_id: Option<&'a str>,
    pub user: Option<&'a str>,
    pub change_type: Option<&'a str>,
    pub count: Option<u32>,
    pub page: Option<u32>,
}Fields
service_id: Option<&'a str>
                           Filter logs to this service. Defaults to all logs.
app_id: Option<&'a str>
                           Filter logs to this Slack app. Defaults to all logs.
user: Option<&'a str>
                           Filter logs generated by this user’s actions. Defaults to all logs.
change_type: Option<&'a str>
                           Filter logs with this change type. Defaults to all logs.
count: Option<u32>
                           Number of items to return per page.
page: Option<u32>
                           Page number of results to return.
Trait Implementations
impl<'a> Clone for IntegrationLogsRequest<'a>[src]
fn clone(&self) -> IntegrationLogsRequest<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'a> Default for IntegrationLogsRequest<'a>[src]
fn default() -> IntegrationLogsRequest<'a>
Returns the "default value" for a type. Read more