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