UNPKG

akua-sdk

Version:

TypeScript SDK for Akua Acquiring Processor

16 lines (15 loc) 517 B
import { CardDataDTO, InstrumentRailDTO, InstrumentUserDataDTO } from './'; export declare class InstrumentDTO { readonly id: string; readonly type: string; readonly status: string; readonly validation: string; readonly client_id: string; readonly organization_id: string; readonly fingerprint: string; readonly created_at: string; readonly updated_at: string; readonly user_data?: InstrumentUserDataDTO; readonly card: CardDataDTO; readonly rail: InstrumentRailDTO; }