/** * 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 authentication information required to generate an authentication ticket for a customer account. */ @JsonIgnoreProperties(ignoreUnknown = true) public class CustomerUserAuthInfo implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The write-only password for the customer account. */ protected String password; public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; } /** * 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; } }