Represents a result object from an operation.

interface Result {
    Errors: string[] | ApiError[];
    Id: number;
    Success: boolean;
}

Properties

Properties

Errors: string[] | ApiError[]

Array of errors or error messages associated with the operation.

Id: number

The identifier associated with the result.

Success: boolean

Indicates whether the operation was successful.