@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
18 lines (17 loc) • 518 B
TypeScript
export declare class AppLicenseValidationResult {
private errors;
private warnings;
private validated;
private appId;
addError(field: string, message: string): void;
addWarning(field: string, message: string): void;
get hasErrors(): boolean;
get hasWarnings(): boolean;
get hasBeenValidated(): boolean;
setValidated(validated: boolean): void;
setAppId(appId: string): void;
getAppId(): string;
getErrors(): object;
getWarnings(): object;
toJSON(): object;
}