UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

18 lines (17 loc) 357 B
import { Country } from '../../request/Country'; import { Fiat } from './Fiat'; /** * Customer */ export declare class Customer { id: string; externalId: string; /** * Country of the Customer */ customerCountry?: Country; accountingCurrency?: Fiat; providerCountry?: Country; active: boolean; enabled: boolean; }