You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
768 B

class AccountTransferResult:
"""
The account information for spot account, margin account etc.
:member
id: The unique account id.
account_type: The type of this account, possible value: spot, margin, otc, point.
account_state: The account state, possible value: working, lock.
balances: The balance list of the specified currency. The content is Balance class
"""
def __init__(self):
self.transact_id = 0
self.transact_time = 0
def print_object(self, format_data=""):
from huobi.utils.print_mix_object import PrintBasic
PrintBasic.print_basic(self.transact_id, format_data + "TransactionId")
PrintBasic.print_basic(self.transact_time, format_data + "TransactionTime")