import { MerchantCurrencyVM } from './merchantCurrencyVM'; import { MerchantPaymentOptionVM } from './merchantPaymentOptionVM'; export interface MerchantVM { id?: string; merchant_name?: string; merchant_type?: number; active?: boolean; client_identifier_text?: string; allow_direct_payment?: boolean; register_link?: string; website?: string; merchantCurrencies?: Array; paymentOptions?: MerchantPaymentOptionVM; can_update?: boolean; can_delete?: boolean; }