/**
 * Paymentwall bypass 파라미터
 */
export type PaymentwallBypass = {
    /**
     * **위젯 코드**
     */
    widget?: string | undefined;
    /**
     * **결제수단 코드**
     */
    ps?: string | undefined;
    /**
     * **국가 코드 (ISO 3166 두 자리)**
     */
    country_code?: string | undefined;
};
