/** 가상계좌 유형 */
export type PaymentMethodVirtualAccountType = 
/** 고정식 */
"FIXED"
/** 회전식 */
 | "NORMAL" | string & {};
