Represents the result of an operation in the MegaScript context.

interface ResultObject {
    Errors: string[];
    Id: number;
    Success: boolean;
}

Properties

Properties

Errors: string[]

Gets or sets the array of error messages associated with the result.

Id: number

Gets or sets the unique identifier for the result.

Success: boolean

Gets or sets a boolean indicating whether the operation was successful.