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