xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
28 lines (27 loc) • 590 B
TypeScript
export declare class Action {
/**
* Name of the actions for this organisation
*/
'name'?: string;
/**
* Status of the action for this organisation
*/
'status'?: Action.StatusEnum;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace Action {
enum StatusEnum {
ALLOWED,
NOTALLOWED
}
}