ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
21 lines (20 loc) • 567 B
TypeScript
import { Locale } from './Locale';
export interface User<TUserXp = any> {
readonly FailedLoginAttempts?: number;
ID?: string;
readonly CompanyID?: string;
Username: string;
Password?: string;
FirstName: string;
LastName: string;
Email: string;
Phone?: string;
TermsAccepted?: string;
Active: boolean;
xp?: TUserXp;
readonly AvailableRoles?: string[];
readonly Locale?: Locale;
readonly DateCreated?: string;
readonly LastActive?: string;
readonly PasswordLastSetDate?: string;
}