io.github.dft.amazon.model.settelmentreport.AdvertisingTransactionDetails 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.settelmentreport;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import io.github.dft.amazon.common.DateDeserializer;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class AdvertisingTransactionDetails {
@JacksonXmlProperty(localName = "TransactionType")
private String transactionType;
@JacksonXmlProperty(localName = "PostedDate")
@JsonDeserialize(using = DateDeserializer.class)
private LocalDateTime postedDate;
@JacksonXmlProperty(localName = "InvoiceId")
private String invoiceId;
@JacksonXmlProperty(localName = "BaseAmount")
private Amount baseAmount;
@JacksonXmlProperty(localName = "TaxAmount")
private Amount taxAmount;
@JacksonXmlProperty(localName = "TransactionAmount")
private Amount transactionAmount;
}