
com.github.seratch.jslack.api.methods.request.auth.AuthRevokeRequest Maven / Gradle / Ivy
package com.github.seratch.jslack.api.methods.request.auth;
import com.github.seratch.jslack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class AuthRevokeRequest implements SlackApiRequest {
/**
* Authentication token. Requires scope: `none`
*/
private String token;
/**
* Setting this parameter to `1` triggers a _testing mode_ where the specified token will not actually be revoked.
*/
private boolean test;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy