Skip to content

DataGatewayNetworkResponseModel

Bases: NamedTuple

Gateway

Parameters:

Name Type Description Default
network required
protocol required
mac int

unique identifier of the device in the network

required
Source code in unicboard_billing_sdk/response_models.py
40
41
42
43
44
45
46
47
48
49
50
51
class DataGatewayNetworkResponseModel(NamedTuple):
    """
    Gateway

    Parameters:
        network: [NetworkResponseModel](NetworkResponseModel.md)
        protocol: [ProtokolResponseModel](ProtokolResponseModel.md)
        mac (int): unique identifier of the device in the network
    """
    network: NetworkResponseModel
    protocol: ProtokolResponseModel
    mac: int