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