export type EximbayV2IssueBillingKeyAndPayBypass = {
    merchant?: {
        shop?: string;
    };
    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;
    };
};
