Skip to content

GetDeviceListInfoResponse

Bases: NamedTuple

Device 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
class GetDeviceListInfoResponse(NamedTuple):
    """
    Device 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): [GetDeviceListInfoPayloadResponse](GetDeviceListInfoPayloadResponse.md)
    """
    count: int
    errors: List[Any]
    ok: bool
    total_count: int
    payload: List[GetDeviceListInfoPayloadResponse]