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