@bluvo/sdk-ts
Version:
Bluvo SDK for TypeScript
140 lines (132 loc) • 3.23 kB
text/typescript
/**
* Bluvo API
* APIs to supercharge your crypto project.
*
* OpenAPI spec version: 0.0.3
* Contact: help@bluvo.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { HttpFile } from '../http/http';
export class ListTransactions200ResponseTransactionsInner {
/**
* The unique identifier of the transaction
*/
'id': string;
/**
* The wallet ID associated with the transaction
*/
'walletId': string;
/**
* The asset symbol
*/
'asset': string;
/**
* The type of transaction (e.g., deposit, withdrawal)
*/
'type': string;
/**
* The transaction amount
*/
'amount': number;
/**
* The timestamp of the transaction
*/
'timestamp': number;
/**
* The status of the transaction
*/
'status': string;
/**
* The transaction ID on the blockchain
*/
'txid'?: string;
/**
* The blockchain address involved in the transaction
*/
'address'?: string;
/**
* The transaction fee
*/
'feeCost'?: number;
/**
* The currency of the transaction fee
*/
'feeCurrency'?: string;
static readonly discriminator: string | undefined = undefined;
static readonly mapping: {[index: string]: string} | undefined = undefined;
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "id",
"baseName": "id",
"type": "string",
"format": ""
},
{
"name": "walletId",
"baseName": "walletId",
"type": "string",
"format": ""
},
{
"name": "asset",
"baseName": "asset",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "string",
"format": ""
},
{
"name": "amount",
"baseName": "amount",
"type": "number",
"format": ""
},
{
"name": "timestamp",
"baseName": "timestamp",
"type": "number",
"format": ""
},
{
"name": "status",
"baseName": "status",
"type": "string",
"format": ""
},
{
"name": "txid",
"baseName": "txid",
"type": "string",
"format": ""
},
{
"name": "address",
"baseName": "address",
"type": "string",
"format": ""
},
{
"name": "feeCost",
"baseName": "feeCost",
"type": "number",
"format": ""
},
{
"name": "feeCurrency",
"baseName": "feeCurrency",
"type": "string",
"format": ""
} ];
static getAttributeTypeMap() {
return ListTransactions200ResponseTransactionsInner.attributeTypeMap;
}
public constructor() {
}
}