Skip to content

GetDeviceValueResponse

Bases: NamedTuple

Device channel information list

Parameters:

Name Type Description Default
count int

object's limit count

required
errors any

presence of errors

required
ok bool

validity

required
total_count int

object's total count

required
payload list required
Source code in unicboard_billing_sdk/response_models.py
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
class GetDeviceValueResponse(NamedTuple):
    """
    Device channel information list

   Parameters:
        count (int): object's limit count
        errors (any): presence of errors
        ok (bool): validity
        total_count (int): object's total count
        payload (list): [GetDeviceChannelValuePayloadResponse](GetDeviceChannelValuePayloadResponse.md)
    """
    count: int
    errors: List[Any]
    ok: bool
    total_count: int
    payload: List[GetDeviceChannelValuePayloadResponse]