/** * 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.customer; 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 reset the password for a customer account. */ @JsonIgnoreProperties(ignoreUnknown = true) public class ResetPasswordInfo 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 user name associated with the user profile. The customer uses the user name to access the account. */ protected String userName; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } protected String customerSetCode; public String getCustomerSetCode() { return this.customerSetCode; } public void setCustomerSetCode(String customerSetCode) { this.customerSetCode = customerSetCode; } }