UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

16 lines (15 loc) 483 B
import type { Bank } from "./../common/Bank.js"; import type { Currency } from "./../common/Currency.js"; /** 파트너 계좌 업데이트를 위한 입력 정보 */ export type SchedulePlatformPartnersBodyUpdateAccount = { /** 은행 */ bank: Bank; /** 정산에 사용할 통화 */ currency: Currency; /** 계좌번호 */ number: string; /** 예금주명 */ holder: string; /** 계좌 검증 아이디 */ accountVerificationId?: string; };