com.paypal.base.sdk.info.SDKVersionImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-sdk Show documentation
Show all versions of rest-api-sdk Show documentation
PayPal SDK for integrating with the REST APIs
package com.paypal.base.sdk.info;
import com.paypal.base.SDKVersion;
/**
* Implementation of SDKVersion
*/
public class SDKVersionImpl implements SDKVersion {
/**
* SDK ID used in User-Agent HTTP header
*/
private static final String SDK_ID = "PayPal-Java-SDK";
/**
* SDK Version used in User-Agent HTTP header
*/
private static final String SDK_VERSION = "1.13.1";
public String getSDKId() {
return SDK_ID;
}
public String getSDKVersion() {
return SDK_VERSION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy