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