tridion-sites-extensions-api-docs

Home > @tridion-sites/open-api-client > OperationResult

OperationResult type

Contains information about performed operation. An operation can be failed due to warnings, if this was requested by the caller.

The “Result” will be null if requested operation return type is void.

Signature:

export type OperationResult = {
    $type?: string;
    Result?: IdentifiableObject;
    ValidationWarnings?: Array<ValidationWarning>;
};

References: IdentifiableObject, ValidationWarning