UNPKG

shopee-client

Version:
15 lines (14 loc) 303 B
export interface PaymentMethod { /** * The payment method */ payment_method: string; /** * The country for this payment method */ country: string; } export default interface GetPaymentListResponse { payment_method_list: PaymentMethod[]; request_id: string; }