UNPKG

wallee

Version:
20 lines (19 loc) 537 B
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 };