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

com.slack.api.methods.request.admin.auth.policy.AdminAuthPolicyRemoveEntitiesRequest Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * https://api.slack.com/methods/admin.auth.policy.removeEntities
 */
@Data
@Builder
public class AdminAuthPolicyRemoveEntitiesRequest implements SlackApiRequest {

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

    /**
     * Encoded IDs of the entities you'd like to remove from the policy.
     */
    private List entityIds;

    /**
     * The name of the policy to remove entities from. Currently, email_password is the only policy
     * that may be used with this method.
     */
    private String policyName;

    private String entityType;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy