1 | import { Entity, Constructable } from '../entity';
|
2 | import { FieldType } from '../selectable';
|
3 | import { ODataUri } from '../uri-conversion';
|
4 | import { ODataRequestConfig } from './odata-request-config';
|
5 | import { WithKeys, WithETag } from './odata-request-traits';
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export declare class ODataUpdateRequestConfig<EntityT extends Entity> extends ODataRequestConfig implements WithKeys, WithETag {
|
11 | readonly _entityConstructor: Constructable<EntityT>;
|
12 | private oDataUri;
|
13 | keys: Record<string, FieldType>;
|
14 | eTag: string;
|
15 | versionIdentifierIgnored: boolean;
|
16 | |
17 |
|
18 |
|
19 |
|
20 | constructor(_entityConstructor: Constructable<EntityT>, oDataUri: ODataUri);
|
21 | resourcePath(): string;
|
22 | queryParameters(): Record<string, any>;
|
23 | updateWithPut(): void;
|
24 | }
|
25 | //# sourceMappingURL=odata-update-request-config.d.ts.map |
\ | No newline at end of file |