Type alias UnsupportedOperationDetails

UnsupportedOperationDetails: {
    index: number;
    operationType: string;
    reason?: string;
}

Details for a reject reason where the specified operation is not supported by the module.

See CIS-7: reject-reasons/unsupportedOperation

Type declaration

  • index: number

    The index in the list of operations of the failing operation.

  • operationType: string

    The type of operation that was not supported.

  • Optional reason?: string

    The reason why the operation was not supported.

Generated using TypeDoc