import { DefaultDeSerializers, DeSerializers, GetAllRequestBuilder, GetByKeyRequestBuilder, CreateRequestBuilder, UpdateRequestBuilder, DeleteRequestBuilder, DeserializedType, RequestBuilder } from '@sap-cloud-sdk/odata-v4'; import { Inven_Cpl } from './Inven_Cpl'; /** * Request builder class for operations supported on the [[Inven_Cpl]] entity. */ export declare class Inven_CplRequestBuilder extends RequestBuilder, T> { /** * Returns a request builder for retrieving one `Inven_Cpl` entity based on its keys. * @param empresa Key property. See [[Inven_Cpl.empresa]]. * @param filial Key property. See [[Inven_Cpl.filial]]. * @param codItem Key property. See [[Inven_Cpl.codItem]]. * @param indProp Key property. See [[Inven_Cpl.indProp]]. * @param codPart Key property. See [[Inven_Cpl.codPart]]. * @param dtEstoque Key property. See [[Inven_Cpl.dtEstoque]]. * @param centro Key property. See [[Inven_Cpl.centro]]. * @returns A request builder for creating requests to retrieve one `Inven_Cpl` entity based on its keys. */ getByKey(empresa: DeserializedType, filial: DeserializedType, codItem: DeserializedType, indProp: DeserializedType, codPart: DeserializedType, dtEstoque: DeserializedType, centro: DeserializedType): GetByKeyRequestBuilder, T>; /** * Returns a request builder for querying all `Inven_Cpl` entities. * @returns A request builder for creating requests to retrieve all `Inven_Cpl` entities. */ getAll(): GetAllRequestBuilder, T>; /** * Returns a request builder for creating a `Inven_Cpl` entity. * @param entity The entity to be created * @returns A request builder for creating requests that create an entity of type `Inven_Cpl`. */ create(entity: Inven_Cpl): CreateRequestBuilder, T>; /** * Returns a request builder for updating an entity of type `Inven_Cpl`. * @param entity The entity to be updated * @returns A request builder for creating requests that update an entity of type `Inven_Cpl`. */ update(entity: Inven_Cpl): UpdateRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `Inven_Cpl`. * @param empresa Key property. See [[Inven_Cpl.empresa]]. * @param filial Key property. See [[Inven_Cpl.filial]]. * @param codItem Key property. See [[Inven_Cpl.codItem]]. * @param indProp Key property. See [[Inven_Cpl.indProp]]. * @param codPart Key property. See [[Inven_Cpl.codPart]]. * @param dtEstoque Key property. See [[Inven_Cpl.dtEstoque]]. * @param centro Key property. See [[Inven_Cpl.centro]]. * @returns A request builder for creating requests that delete an entity of type `Inven_Cpl`. */ delete(empresa: string, filial: string, codItem: string, indProp: string, codPart: string, dtEstoque: string, centro: string): DeleteRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `Inven_Cpl`. * @param entity Pass the entity to be deleted. * @returns A request builder for creating requests that delete an entity of type `Inven_Cpl` by taking the entity as a parameter. */ delete(entity: Inven_Cpl): DeleteRequestBuilder, T>; } //# sourceMappingURL=Inven_CplRequestBuilder.d.ts.map