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")