Skip to content

NetworkResponseModel

Bases: NamedTuple

Internal network

Parameters:

Name Type Description Default
data_gateway required
name str

network's name

required
type_network str

type of network, can be output or input

required
Source code in unicboard_billing_sdk/response_models.py
16
17
18
19
20
21
22
23
24
25
26
27
class NetworkResponseModel(NamedTuple):
    """
    Internal network

    Parameters:
        data_gateway: [DataGatewayResponseModel](DataGatewayResponseModel.md)
        name (str): network's name
        type_network (str): type of network, can be output or input
    """
    data_gateway: DataGatewayResponseModel
    name: str
    type_network: str