io.github.dft.amazon.model.settelmentreport.TaxWithholding 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 TaxWithholding {
@JacksonXmlProperty(localName = "TransactionType")
private String TransactionType;
@JacksonXmlProperty(localName = "PostedDate")
@JsonDeserialize(using = DateDeserializer.class)
private LocalDateTime postedDate;
@JacksonXmlProperty(localName = "TransactionAmount")
private Amount amount;
}