wallee
Version:
TypeScript/JavaScript client for wallee
20 lines (19 loc) • 566 B
TypeScript
import { AbstractApplicationUserUpdate } from "./AbstractApplicationUserUpdate";
declare class ApplicationUserCreate extends AbstractApplicationUserUpdate {
/**
* The primary account that the user belongs to.
*/
'primaryAccount': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ApplicationUserCreate };