@portone/browser-sdk
Version:
PortOne SDK for browser
25 lines (24 loc) • 729 B
TypeScript
import { PaypalV2Country } from '../PaypalV2Country.js';
export type PaypalV2LoadIssueBillingKeyUIBypass = {
style?: {
color?: 'gold' | 'blue' | 'silver' | 'white' | 'black';
height?: number;
label?: 'paypal' | 'checkout' | 'buynow' | 'pay' | 'installment' | 'subscribe' | 'donate';
layout?: 'vertical' | 'horizontal';
shape?: 'rect' | 'pill';
tagline?: boolean;
};
shipping_address?: {
recipient_name?: string;
line1: string;
line2?: string;
city: string;
state?: string;
postal_code?: string;
country_code: PaypalV2Country;
};
additional_data?: {
key: string;
value: string;
}[];
};