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