wallee
Version:
TypeScript/JavaScript client for wallee
20 lines (19 loc) • 537 B
TypeScript
import { AbstractHumanUserUpdate } from "./AbstractHumanUserUpdate";
declare class HumanUserCreate extends AbstractHumanUserUpdate {
/**
* 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 { HumanUserCreate };