UNPKG

@paddle/paddle-node-sdk

Version:

A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.

13 lines (12 loc) 617 B
import { type CurrencyCode, type MetricsTimeseriesInterval } from '../../enums/index.js'; import { type IMetricsTimeseriesRefundsResponse } from '../../types/index.js'; import { MetricsTimeseriesRefundsDatapoint } from './metrics-timeseries-refunds-datapoint.js'; export declare class MetricsTimeseriesRefunds { readonly currencyCode: CurrencyCode; readonly endsAt: string; readonly interval: MetricsTimeseriesInterval; readonly startsAt: string; readonly timeseries: MetricsTimeseriesRefundsDatapoint[]; readonly updatedAt: string; constructor(data: IMetricsTimeseriesRefundsResponse); }