/** * 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.core; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Phone number information for a contact. */ @JsonIgnoreProperties(ignoreUnknown = true) public class Phone implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Home phone number. */ protected String home; public String getHome() { return this.home; } public void setHome(String home) { this.home = home; } /** * Mobile phone number. */ protected String mobile; public String getMobile() { return this.mobile; } public void setMobile(String mobile) { this.mobile = mobile; } /** * Work phone number. */ protected String work; public String getWork() { return this.work; } public void setWork(String work) { this.work = work; } }