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