/** * 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 { Currency } from './currency'; import { Merchant } from './merchant'; import { Order } from './order'; import { Transaction } from './transaction'; import { UserPaymentOption } from './userPaymentOption'; export interface MerchantCurrency { id?: string; merchant_id?: string; currency_id?: number; name?: string; merchant_client_id?: string; merchant_account_id?: string; merchant_secret?: string; default_currency?: boolean; active?: boolean; currency?: Currency; merchant?: Merchant; orders?: Array; transactions?: Array; userPaymentOptions?: Array; objectState?: MerchantCurrency.ObjectStateEnum; } export namespace MerchantCurrency { export type ObjectStateEnum = 0 | 1 | 2 | 3; export const ObjectStateEnum = { NUMBER_0: 0 as ObjectStateEnum, NUMBER_1: 1 as ObjectStateEnum, NUMBER_2: 2 as ObjectStateEnum, NUMBER_3: 3 as ObjectStateEnum } }