wallee
Version:
TypeScript/JavaScript client for wallee
20 lines (19 loc) • 602 B
TypeScript
import { ApplicationUser } from "./ApplicationUser";
declare class ApplicationUserCreateWithMacKey extends ApplicationUser {
/**
* The user's authentication key securing requests. Only displayed a single time after the user has been created.
*/
'macKey'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ApplicationUserCreateWithMacKey };