com.paypal.core.object.RefreshToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk Show documentation
Show all versions of checkout-sdk Show documentation
PayPal SDK for integrating with the Checkout REST APIs
package com.paypal.core.object;
import com.paypal.http.annotations.Model;
import com.paypal.http.annotations.SerializedName;
@Model
public class RefreshToken {
@SerializedName("refresh_token")
private String refreshToken;
public String refreshToken() {
return refreshToken;
}
}