forked from lthn/blockchain
Introduces a new Angular client SDK for the Lethean Blockchain API, generated via OpenAPI Generator. Includes all necessary Angular service, model, configuration, and packaging files, and updates the Makefile to support the 'angular' target for SDK generation.
31 lines
905 B
TypeScript
Generated
31 lines
905 B
TypeScript
Generated
/**
|
|
* 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;
|
|
}
|
|
|