@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
25 lines (24 loc) • 881 B
TypeScript
import type { PlatformBulkPayoutStats } from "./../../platform/bulkPayout/PlatformBulkPayoutStats.js";
import type { PlatformBulkPayoutStatus } from "./../../platform/bulkPayout/PlatformBulkPayoutStatus.js";
import type { PlatformPayoutMethod } from "./../../platform/PlatformPayoutMethod.js";
export type PlatformBulkPayout = {
/** 일괄 지급 고유 아이디 */
id: string;
graphqlId: string;
name: string;
creatorId: string;
method: PlatformPayoutMethod;
arePayoutsGenerated: boolean;
/** (int64) */
totalPayoutAmount: number;
status: PlatformBulkPayoutStatus;
payoutStats: PlatformBulkPayoutStats;
/** (RFC 3339 date-time) */
statusUpdatedAt: string;
/** (RFC 3339 date-time) */
createdAt: string;
/** (RFC 3339 date-time) */
updatedAt: string;
/** (RFC 3339 date-time) */
scheduledAt?: string;
};