io.github.dft.amazon.model.AmazonCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amazon-sp-api Show documentation
Show all versions of amazon-sp-api Show documentation
Amazon SP API using JDK 11
package io.github.dft.amazon.model;
import lombok.Data;
import java.time.ZonedDateTime;
import java.util.List;
@Data
public class AmazonCredentials {
private String user;
private String accessKeyId;
private String secretAccessKey;
private String userArn;
private String roleArn;
private String appId;
private String clientIdentifier;
private String redirectUrl;
private String clientSecret;
private String region;
private String merchantId;
private String accessToken;
private String refreshToken;
private String tokenType;
private ZonedDateTime expiresInTime;
private String spAPIEndpoint;
private List marketplaces;
}