Package com.mercadopago.client.oauth
Class RefreshOauthCredentialRequest
- java.lang.Object
-
- com.mercadopago.client.oauth.RefreshOauthCredentialRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RefreshOauthCredentialRequest.RefreshOauthCredentialRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RefreshOauthCredentialRequest.RefreshOauthCredentialRequestBuilder
builder()
String
getClientId()
Unique ID that identifies your integration.String
getClientSecret()
Private key to be used in some plugins to generate payments.String
getGrantType()
Type of operation to perform to get your credentials.String
getRefreshToken()
Value received with your seller's data.
-
-
-
Method Detail
-
builder
public static RefreshOauthCredentialRequest.RefreshOauthCredentialRequestBuilder builder()
-
getGrantType
public String getGrantType()
Type of operation to perform to get your credentials. This is a fixed parameter with a refresh_token value.
-
getClientSecret
public String getClientSecret()
Private key to be used in some plugins to generate payments. You can get it in Your credentials.
-
getClientId
public String getClientId()
Unique ID that identifies your integration. You can get it in your Mercado Pago credentials.
-
getRefreshToken
public String getRefreshToken()
Value received with your seller's data.
-
-