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