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