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

com.slack.api.methods.request.admin.conversations.AdminConversationsSetCustomRetentionRequest Maven / Gradle / Ivy

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

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

/**
 * https://api.slack.com/methods/admin.conversations.setCustomRetention
 */
@Data
@Builder
public class AdminConversationsSetCustomRetentionRequest implements SlackApiRequest {

    /**
     * Authentication token bearing required scopes.
     */
    private String token;

    /**
     * The channel to set the retention policy for.
     */
    private String channelId;

    /**
     * The message retention duration in days to set for this channel
     */
    private Integer durationDays;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy