forked from lthn/blockchain
32 lines
905 B
TypeScript
32 lines
905 B
TypeScript
|
|
/**
|
||
|
|
* 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<TransactionAttachmentModel>;
|
||
|
|
blob?: string;
|
||
|
|
blob_size?: number;
|
||
|
|
extra?: Array<TransactionExtraModel>;
|
||
|
|
fee?: number;
|
||
|
|
id?: string;
|
||
|
|
ins?: Array<TransactionInputModel>;
|
||
|
|
keeper_block?: number;
|
||
|
|
object_in_json?: string;
|
||
|
|
outs?: Array<TransactionOutputModel>;
|
||
|
|
pub_key?: string;
|
||
|
|
timestamp?: number;
|
||
|
|
}
|
||
|
|
|