/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.paymentservice; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Address information to supply for a contact. */ @JsonIgnoreProperties(ignoreUnknown = true) public class Address implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The associated city. */ protected String city; public String getCity() { return this.city; } public void setCity(String city) { this.city = city; } /** * The company name associated to this address object. */ protected String companyName; public String getCompanyName() { return this.companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } /** * The associated country */ protected String country; public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } /** * Address 1 */ protected String line1; public String getLine1() { return this.line1; } public void setLine1(String line1) { this.line1 = line1; } /** * Address 2 */ protected String line2; public String getLine2() { return this.line2; } public void setLine2(String line2) { this.line2 = line2; } /** * Address 3 */ protected String line3; public String getLine3() { return this.line3; } public void setLine3(String line3) { this.line3 = line3; } /** * The associated postal code. */ protected String postalCode; public String getPostalCode() { return this.postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } /** * The associated state. */ protected String state; public String getState() { return this.state; } public void setState(String state) { this.state = state; } }