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