import { Entity, Constructable } from '../entity'; import { FieldType } from '../selectable'; import { ODataUri } from '../uri-conversion'; import { ODataRequestConfig } from './odata-request-config'; import { WithKeys, WithETag } from './odata-request-traits'; /** * OData update request configuration for an entity type. * @typeparam EntityT - Type of the entity to setup a request for */ export declare class ODataUpdateRequestConfig extends ODataRequestConfig implements WithKeys, WithETag { readonly _entityConstructor: Constructable; private oDataUri; keys: Record; eTag: string; versionIdentifierIgnored: boolean; /** * Creates an instance of ODataUpdateRequestConfig. * @param _entityConstructor - Constructor type of the entity to create a configuration for */ constructor(_entityConstructor: Constructable, oDataUri: ODataUri); resourcePath(): string; queryParameters(): Record; updateWithPut(): void; } //# sourceMappingURL=odata-update-request-config.d.ts.map