arz_api.models.other
1from typing import TYPE_CHECKING 2 3if TYPE_CHECKING: 4 from arz_api import ArizonaAPI 5 from arz_api.models.member_object import Member 6 7 8class Statistic: 9 def __init__(self, API: 'ArizonaAPI', threads_count: int, posts_count: int, users_count: int, last_register_member: 'Member') -> None: 10 self.API = API 11 self.threads_count = threads_count 12 self.posts_count = posts_count 13 self.users_count = users_count 14 self.last_register_member = last_register_member
class
Statistic:
9class Statistic: 10 def __init__(self, API: 'ArizonaAPI', threads_count: int, posts_count: int, users_count: int, last_register_member: 'Member') -> None: 11 self.API = API 12 self.threads_count = threads_count 13 self.posts_count = posts_count 14 self.users_count = users_count 15 self.last_register_member = last_register_member
Statistic( API: arz_api.api.ArizonaAPI, threads_count: int, posts_count: int, users_count: int, last_register_member: arz_api.models.member_object.Member)
10 def __init__(self, API: 'ArizonaAPI', threads_count: int, posts_count: int, users_count: int, last_register_member: 'Member') -> None: 11 self.API = API 12 self.threads_count = threads_count 13 self.posts_count = posts_count 14 self.users_count = users_count 15 self.last_register_member = last_register_member