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

com.slack.api.methods.request.openid.connect.OpenIDConnectUserInfoRequest Maven / Gradle / Ivy

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

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

/**
 * - https://api.slack.com/methods/openid.connect.userInfo
 * - https://api.slack.com/authentication/sign-in-with-slack
 */
@Data
@Builder
public class OpenIDConnectUserInfoRequest implements SlackApiRequest {

    /**
     * Authentication token bearing required scopes.
     * Tokens should be passed as an HTTP Authorization header or alternatively, as a POST parameter.
     */
    private String token;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy