Interface implemented by OData requests defining the getter and setter for the batch reference.

interface WithBatchReference {
    getBatchReference: (() => BatchReference);
    setBatchId: ((id) => void);
}

Implemented by

Properties

getBatchReference: (() => BatchReference)

Getter for the batch reference.

Type declaration

setBatchId: ((id) => void)

Setter for the batch reference.

Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.

Type declaration

    • (id): void
    • Parameters

      • id: string

      Returns void