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