/** * 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; /** * The information required to modify a shopper account password. */ @JsonIgnoreProperties(ignoreUnknown = true) public class PasswordInfo implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The External Password, typically used for imports in conjunction with a custom action */ protected String externalPassword; public String getExternalPassword() { return this.externalPassword; } public void setExternalPassword(String externalPassword) { this.externalPassword = externalPassword; } /** * The new password entered and saved by the user of the account. */ protected String newPassword; public String getNewPassword() { return this.newPassword; } public void setNewPassword(String newPassword) { this.newPassword = newPassword; } /** * The previous shopper account password value. */ protected String oldPassword; public String getOldPassword() { return this.oldPassword; } public void setOldPassword(String oldPassword) { this.oldPassword = oldPassword; } }