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