
com.github.seratch.jslack.api.methods.request.oauth.OAuthV2AccessRequest Maven / Gradle / Ivy
package com.github.seratch.jslack.api.methods.request.oauth;
import com.github.seratch.jslack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
/**
* https://api.slack.com/authentication/basics
* https://api.slack.com/methods/oauth.v2.access
*/
@Data
@Builder
public class OAuthV2AccessRequest implements SlackApiRequest {
/**
* Issued when you created your application.
*/
private String clientId;
/**
* Issued when you created your application.
*/
private String clientSecret;
/**
* The `code` param returned via the OAuth callback.
*/
private String code;
/**
* This must match the originally submitted URI (if one was sent).
*/
private String redirectUri;
@Override
public String getToken() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy