Skip to content

DeviceModificationTypeResponseModel

Bases: NamedTuple

Device model

Parameters:

Name Type Description Default
device_metering_type required
name_ru_en str

name of the device model in Russian/English (for the user)

required
sys_name str

name of the device model in the system (code)

required
type str

smart_meter/modem

required
Source code in unicboard_billing_sdk/response_models.py
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
class DeviceModificationTypeResponseModel(NamedTuple):
    """
    Device model

    Parameters:
        device_metering_type: [DeviceMeteringType](DeviceMeteringType.md)
        name_ru_en (str): name of the device model in Russian/English (for the user)
        sys_name (str): name of the device model in the system (code)
        type (str): smart_meter/modem
    """
    device_metering_type: DeviceMeteringType
    name_en: str
    name_ru: str
    sys_name: str
    type: str