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