@portone/browser-sdk
Version:
PortOne SDK for browser
44 lines (43 loc) • 988 B
TypeScript
export type EximbayV2Bypass = {
payment?: {
payment_method?: string;
multi_payment_method?: string[];
};
merchant?: {
shop?: string;
partner_code?: string;
};
tax?: {
receipt_status?: 'Y' | 'N';
};
surcharge?: {
name?: string;
quantity?: string;
unit_price?: string;
}[];
ship_to?: {
city?: string;
country?: string;
first_name?: string;
last_name?: string;
phone_number?: string;
postal_code?: string;
state?: string;
street1?: string;
};
bill_to?: {
city?: string;
country?: string;
first_name?: string;
last_name?: string;
phone_number?: string;
postal_code?: string;
state?: string;
street1?: string;
};
settings?: {
call_from_app?: 'Y' | 'N';
issuer_country?: string;
virtualaccount_expiry_date?: string;
};
};