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