/** * 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 { 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; }