@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
9 lines (8 loc) • 371 B
TypeScript
import type { PageInfo } from "./../../common/PageInfo.js";
import type { PlatformPayout } from "./../../platform/payout/PlatformPayout.js";
import type { PlatformPayoutStatusStats } from "./../../platform/PlatformPayoutStatusStats.js";
export type GetPlatformPayoutsResponse = {
items: PlatformPayout[];
page: PageInfo;
counts: PlatformPayoutStatusStats;
};