rosetta-sdk-typescript
Version:
Typescript SDK to create and interact with Rosetta API implementations.
41 lines (40 loc) • 1.33 kB
TypeScript
/**
* Rosetta
* Build Once. Integrate Your Blockchain Everywhere.
*
* The version of the OpenAPI document: 1.4.10
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Direction, NetworkIdentifier, TransactionIdentifier } from './';
/**
* The related_transaction allows implementations to link together multiple transactions. An unpopulated network identifier indicates that the related transaction is on the same network.
* @export
* @interface RelatedTransaction
*/
export interface RelatedTransaction {
/**
*
* @type {NetworkIdentifier}
* @memberof RelatedTransaction
*/
network_identifier?: NetworkIdentifier;
/**
*
* @type {TransactionIdentifier}
* @memberof RelatedTransaction
*/
transaction_identifier: TransactionIdentifier;
/**
*
* @type {Direction}
* @memberof RelatedTransaction
*/
direction: Direction;
}
export declare function RelatedTransactionFromJSON(json: any): RelatedTransaction;
export declare function RelatedTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelatedTransaction;
export declare function RelatedTransactionToJSON(value?: RelatedTransaction | null): any;