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

com.dft.bigcommerce.model.customer.customerAddresses.CustomerAddress Maven / Gradle / Ivy

package com.dft.bigcommerce.model.customer.customerAddresses;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.Data;

@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class CustomerAddress {
    private Integer id;
    private String countryIso2;
    private Integer customerId;
    private String firstName;
    private String lastName;
    private String company;
    private String street1;
    private String street2;
    private String city;
    private String state;
    private String zip;
    private String country;
    private String phone;
    private String addressType;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy