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