/** * Lethean Blockchain API * * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { TransactionAttachmentModel } from './transactionAttachmentModel'; import { TransactionInputModel } from './transactionInputModel'; import { TransactionExtraModel } from './transactionExtraModel'; import { TransactionOutputModel } from './transactionOutputModel'; export interface TransactionDetailsModel { amount?: number; attachments?: Array; blob?: string; blob_size?: number; extra?: Array; fee?: number; id?: string; ins?: Array; keeper_block?: number; object_in_json?: string; outs?: Array; pub_key?: string; timestamp?: number; }