wallee
Version:
TypeScript/JavaScript client for wallee
39 lines (38 loc) • 845 B
TypeScript
declare class TwoFactorAuthenticationType {
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
* The feature that this type belongs to.
*/
'feature'?: number;
/**
* The identifier of the icon representing this type.
*/
'icon'?: string;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { TwoFactorAuthenticationType };