import { Constructable, Entity } from '../entity'; import { Link } from '../selectable'; import { ODataUri } from '../uri-conversion'; import { ODataRequestConfig } from './odata-request-config'; /** * OData create request configuration for an entity type. * @typeparam EntityT - Type of the entity to setup a request for */ export declare class ODataCreateRequestConfig extends ODataRequestConfig { readonly _entityConstructor: Constructable; private oDataUri; /** * Keys of the parent of the entity to create. Defined only when attempting to create child entities. */ parentKeys: Record; /** * Field that links the parent entity class to the child entity class. */ childField: Link; /** * Creates an instance of ODataRequest. * @param _entityConstructor - Constructor type of the entity to create a configuration for */ constructor(_entityConstructor: Constructable, oDataUri: ODataUri); resourcePath(): string; queryParameters(): Record; protected resourcePathAsChild(): string; } //# sourceMappingURL=odata-create-request-config.d.ts.map