@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
12 lines (11 loc) • 394 B
TypeScript
import type { UpdatePlatformPartnerBody } from "./../platform/UpdatePlatformPartnerBody.js";
/** 파트너 예약 업데이트 재설정을 위한 입력 정보 */
export type ReschedulePlatformPartnerBody = {
/** 반영할 업데이트 내용 */
update: UpdatePlatformPartnerBody;
/**
* 업데이트 적용 시점
* (RFC 3339 date-time)
*/
appliedAt: string;
};