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