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