Skip to content

DeviceMeteringType

Bases: NamedTuple

Type of measuring system (gas, water)

Parameters:

Name Type Description Default
name_ru str

name of the measuring system in Russian/English (for the user)

required
name_en str

name of the measuring system in Russian/English (for the user)

required
sys_name str

name of the measuring system in the system (code)

required
Source code in unicboard_billing_sdk/response_models.py
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
class DeviceMeteringType(NamedTuple):
    """
    Type of measuring system (gas, water)

    Parameters:
        name_ru (str): name of the measuring system in Russian/English (for the user)
        name_en (str): name of the measuring system in Russian/English (for the user)
        sys_name (str): name of the measuring system in the system (code)
    """
    name_en: str
    name_ru: str
    sys_name: str