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