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.
19 lines
383 B
TypeScript
Generated
19 lines
383 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.
|
|
*/
|
|
|
|
|
|
export interface TransactionOutputModel {
|
|
amount?: number;
|
|
global_index?: number;
|
|
is_spent?: boolean;
|
|
minimum_sigs?: number;
|
|
pub_keys?: Array<string>;
|
|
}
|
|
|