UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

33 lines (32 loc) 1.38 kB
import type { PaymentChannel, StatusCheckout } from '../models/index.js'; import type { QueryConfig } from '../utils/QueryConfig.js'; export declare class GetCommerceCasesQuery implements QueryConfig { private offset?; private size?; private fromDate?; private toDate?; private commerceCaseId?; private merchantReference?; private merchantCustomerId?; private includeCheckoutStatus?; private includePaymentChannel?; setOffset(offset: number): this; setSize(size: number): this; setFromDate(fromDate: string): this; setToDate(toDate: string): this; setCommerceCaseId(commerceCaseId: string): this; setMerchantReference(merchantReference: string): this; setMerchantCustomerId(merchantCustomerId: string): this; setIncludeCheckoutStatus(includeCheckoutStatus: StatusCheckout[]): this; setIncludePaymentChannel(includePaymentChannel: PaymentChannel[]): this; getOffset(): number | undefined; getSize(): number | undefined; getFromDate(): string | undefined; getToDate(): string | undefined; getCommerceCaseId(): string | undefined; getMerchantReference(): string | undefined; getMerchantCustomerId(): string | undefined; getIncludeCheckoutStatus(): StatusCheckout[] | undefined; getIncludePaymentChannel(): PaymentChannel[] | undefined; toQueryMap(): Map<string, string>; }