import { MethodTypeType } from './methodTypeType'; export interface MethodType { /** * Country code by ISO alpha-2 */ countryISOCode: string; type: MethodTypeType; /** * Currency of type */ currency: string; /** * Payment type priority within the country */ priority: number; }