/** * 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; /** * Information required to authenticate a user. */ @JsonIgnoreProperties(ignoreUnknown = true) public class UserAuthInfo implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The email address of the specified user or the email address associated with the specified entity. */ protected String emailAddress; public String getEmailAddress() { return this.emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } /** * The saved password for the customer account. */ protected String password; public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; } }