com.mozu.api.contracts.customer.B2BUserAndAuthInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* 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;
import com.mozu.api.contracts.customer.B2BUser;
/**
* The individual user information of logins that can access a shared B2B account.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class B2BUserAndAuthInfo implements Serializable
{
// Default Serial Version UID
private static final long serialVersionUID = 1L;
/**
* The external password used by this login, if applicable.
*/
protected String externalPassword;
public String getExternalPassword() {
return this.externalPassword;
}
public void setExternalPassword(String externalPassword) {
this.externalPassword = externalPassword;
}
/**
* Indicates if this object/data was imported from an outside source such as a data import or synchronization via an app or service. If true, this data was originally imported into and accessible through your store database. Examples of imported objects/data include orders and customer accounts.
*/
protected Boolean isImport;
public Boolean getIsImport() {
return this.isImport;
}
public void setIsImport(Boolean isImport) {
this.isImport = isImport;
}
/**
* Individual user information for a login that can access a shared B2B account.
*/
protected B2BUser b2bUser;
public B2BUser getB2bUser() {
return this.b2bUser;
}
public void setB2bUser(B2BUser b2bUser) {
this.b2bUser = b2bUser;
}
}