UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

14 lines (13 loc) 857 B
import type { WebhookTransactionCancelledDataCancelPending } from "./WebhookTransactionCancelledDataCancelPending.js"; /** (결제 취소가 비동기로 수행되는 경우) 결제 취소를 요청했을 때 */ export type WebhookTransactionCancelledCancelPending = { /** 웹훅을 트리거한 이벤트의 타입입니다. */ type: "Transaction.CancelPending"; /** * 해당 웹훅을 트리거한 이벤트의 발생 시각(RFC 3339 형식)입니다. 고객사 서버가 웹훅을 수신하는 데 실패하여 재시도가 일어나도 이 값은 동일하게 유지됩니다. * (RFC 3339 date-time) */ timestamp: string; /** (결제 취소가 비동기로 수행되는 경우) 결제 취소를 요청했을 때 이벤트의 실제 세부 내용입니다. */ data: WebhookTransactionCancelledDataCancelPending; };