All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.slack.api.methods.request.team.TeamIntegrationLogsRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.request.team;

import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;

/**
 * https://api.slack.com/methods/team.integrationLogs
 */
@Data
@Builder
public class TeamIntegrationLogsRequest implements SlackApiRequest {

    /**
     * Authentication token. Requires scope: `admin`
     */
    private String token;

    /**
     * Filter logs to this service. Defaults to all logs.
     */
    private String serviceId;

    /**
     * Filter logs generated by this user\u2019s actions. Defaults to all logs.
     */
    private String user;

    /**
     * Filter logs to this Slack app. Defaults to all logs.
     */
    private String appId;

    /**
     * Filter logs with this change type. Defaults to all logs.
     */
    private String changeType;

    private Integer count;

    private Integer page;

    /**
     * Required for org-wide apps.
     */
    private String teamId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy