UNPKG

rosetta-sdk-typescript

Version:

Typescript SDK to create and interact with Rosetta API implementations.

35 lines (34 loc) 1.24 kB
/** * 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 { TransactionIdentifier } from './'; /** * TransactionIdentifierResponse contains the transaction_identifier of a transaction that was submitted to either `/construction/hash` or `/construction/submit`. * @export * @interface TransactionIdentifierResponse */ export interface TransactionIdentifierResponse { /** * * @type {TransactionIdentifier} * @memberof TransactionIdentifierResponse */ transaction_identifier: TransactionIdentifier; /** * * @type {object} * @memberof TransactionIdentifierResponse */ metadata?: object; } export declare function TransactionIdentifierResponseFromJSON(json: any): TransactionIdentifierResponse; export declare function TransactionIdentifierResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionIdentifierResponse; export declare function TransactionIdentifierResponseToJSON(value?: TransactionIdentifierResponse | null): any;