import { CurrencyVM } from './currencyVM'; import { MerchantVM } from './merchantVM'; export interface UserPaymentOptionVM { id?: number; merchant_currency_id?: string; client_identifier?: string; name?: string; currency_id?: number; currency?: CurrencyVM; merchant?: MerchantVM; business_name?: string; business_number?: string; terms_agreed: boolean; tax_registered?: boolean; tax_percentage?: number; send_invoice?: boolean; can_update?: boolean; can_delete?: boolean; }