@openzeppelin/relayer-sdk
Version:
OpenZeppelin Relayer SDK
80 lines (79 loc) • 1.62 kB
TypeScript
/**
* OpenZeppelin Relayer API
* OpenZeppelin Relayer API
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { TransactionStatus } from './transaction-status';
/**
*
* @export
* @interface StellarTransactionResponse
*/
export interface StellarTransactionResponse {
/**
*
* @type {string}
* @memberof StellarTransactionResponse
*/
'confirmed_at'?: string;
/**
*
* @type {string}
* @memberof StellarTransactionResponse
*/
'created_at': string;
/**
*
* @type {number}
* @memberof StellarTransactionResponse
*/
'fee': number;
/**
*
* @type {string}
* @memberof StellarTransactionResponse
*/
'hash'?: string;
/**
*
* @type {string}
* @memberof StellarTransactionResponse
*/
'id': string;
/**
*
* @type {string}
* @memberof StellarTransactionResponse
*/
'sent_at'?: string;
/**
*
* @type {number}
* @memberof StellarTransactionResponse
*/
'sequence_number': number;
/**
*
* @type {string}
* @memberof StellarTransactionResponse
*/
'source_account': string;
/**
*
* @type {TransactionStatus}
* @memberof StellarTransactionResponse
*/
'status': TransactionStatus;
/**
*
* @type {string}
* @memberof StellarTransactionResponse
*/
'status_reason'?: string | null;
}