/** * Finix API */ /** * */ export declare class CreateUserRequest { /** * Details if the `user` is enabled and active. Set to **false** to disable the `user`. */ 'enabled'?: boolean; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }