30 lines
620 B
Python
30 lines
620 B
Python
from .base import BaseApiObject
|
|
|
|
|
|
class Statistics(BaseApiObject):
|
|
rel = "statistics"
|
|
type = "statistic"
|
|
version = "3.866.0"
|
|
|
|
@property
|
|
def data(self):
|
|
"""Data dictionary for object
|
|
|
|
:return: dict: dict with keys:
|
|
- acronym
|
|
- always_display_decimals
|
|
- formula
|
|
- is_in_descending_order
|
|
- display_zero_totals
|
|
- is_percentage
|
|
- is_private
|
|
- is_team_statistic
|
|
- is_top_statistic
|
|
- name
|
|
- precision
|
|
- statistic_group_id
|
|
- team_id
|
|
- type
|
|
"""
|
|
return super().data
|