All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.dft.amazon.model.orders.v0.Address Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
package io.github.dft.amazon.model.orders.v0;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class Address {

    @JsonProperty("Name")
    private String name;

    @JsonProperty("AddressLine1")
    private String addressLine1;

    @JsonProperty("AddressLine2")
    private String addressLine2;

    @JsonProperty("AddressLine3")
    private String addressLine3;

    @JsonProperty("City")
    private String city;

    @JsonProperty("County")
    private String county;

    @JsonProperty("District")
    private String district;

    @JsonProperty("StateOrRegion")
    private String stateOrRegion;

    @JsonProperty("Municipality")
    private String municipality;

    @JsonProperty("PostalCode")
    private String postalCode;

    @JsonProperty("CountryCode")
    private String countryCode;

    @JsonProperty("Phone")
    private String phone;

    @JsonProperty("AddressType")
    private String addressType ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy