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