/** * 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; /** * Mozu.PaymentService.Contracts.Contact ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class Contact implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Mozu.PaymentService.Contracts.Contact country ApiTypeMember DOCUMENT_HERE */ protected String country; public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } /** * The email address for the customer account and contact. This email may be used for login to the storefront, receiving in-stock product notifications, and subscription mailing lists. */ protected String email; public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } /** * The full first name of a customer or contact name. */ protected String firstname; public String getFirstname() { return this.firstname; } public void setFirstname(String firstname) { this.firstname = firstname; } /** * The full last name of a customer or contact name. */ protected String lastname; public String getLastname() { return this.lastname; } public void setLastname(String lastname) { this.lastname = lastname; } /** * The associated contact's phone number. */ protected String phone; public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; } }