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