/** * Innertickets API * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: v1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ 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; }