wallee
Version:
TypeScript/JavaScript client for wallee
24 lines (23 loc) • 624 B
TypeScript
import { AbstractAccountUpdate } from "./AbstractAccountUpdate";
declare class AccountCreate extends AbstractAccountUpdate {
/**
* The parent account responsible for administering this account.
*/
'parentAccount'?: number;
/**
* The scope that the account belongs to.
*/
'scope': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { AccountCreate };