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