TronAccount
Model getters
| Method name | Return type | Description | Notes |
|---|---|---|---|
| getAddress() | string | Account address Example: TGDqQAP5bduoPKVgdbk7fGyW4DwEt3RRn8 | |
| getBalance() | float | Balance of the TRX, in SUN. SUN is 1/1000000 TRX. Example: 2342342 | |
| getTrc10() | \Tatum\Model\TronAccountTrc10Inner[] | Example: null | |
| getTrc20() | object[] | Example: null | |
| getCreateTime() | float | Date of creation of the account in UTC millis. Example: 1602848895000 | |
| getAssetIssuedId() | string | ID of the issued TRC10 token, if any. Example: 1003475 | [optional] |
| getAssetIssuedName() | float | Balance of the issued TRC10 token, if any. Example: 100 | [optional] |
| getFreeNetUsage() | float | Free usage of the network. Example: 1000 | |
| getFreeNetLimit() | float | Free usage limit of the network. Example: 1500 | [optional] |
| getNetUsage() | float | Extra usage of the network. Example: 5000 | [optional] |
| getNetLimit() | float | Extra usage limit of the network. Example: 5000 | [optional] |
| getBandwidth() | float | Remaining usage of the network, equal to freeNetLimit - freeNetUsed + netLimit - netUsed. Example: 1500 |