wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 690 B
TypeScript
import { User } from "./User";
declare class ApplicationUser extends User {
/**
* The name used to identify the application user.
*/
'name'?: string;
/**
* The primary account that the user belongs to.
*/
'primaryAccount'?: number;
/**
* The maximum number of API requests that are accepted every 2 minutes.
*/
'requestLimit'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ApplicationUser };