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
753 B
21 lines
753 B
class AccountPointTransferResult:
|
|
"""
|
|
The account change information received by subscription of account.
|
|
|
|
:member
|
|
timestamp: The UNIX formatted timestamp generated by server in UTC.
|
|
change_type: The event that asset change notification related.
|
|
account_change_list: The list of account change, the content is AccountChange class
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.transactId = ""
|
|
self.transactTime = 0
|
|
|
|
def print_object(self, format_data=""):
|
|
from huobi.utils.print_mix_object import PrintBasic
|
|
PrintBasic.print_basic(self.transactId, format_data + "transactId")
|
|
PrintBasic.print_basic(self.transactTime, format_data + "transactTime")
|
|
self.data.print_object()
|