three.MF.V3.Descriptors.Network

 1class Interface:
 2
 3    """
 4     Network interface descriptor.
 5    """
 6    def __init__(self, name: str, ip: str, ssid: str):
 7        # The name of the interface.
 8        self.name = name
 9        # The address associated with the interface.
10        self.ip = ip
11        # The ssid or name of the network.
12        self.ssid = ssid
class Interface:
 2class Interface:
 3
 4    """
 5     Network interface descriptor.
 6    """
 7    def __init__(self, name: str, ip: str, ssid: str):
 8        # The name of the interface.
 9        self.name = name
10        # The address associated with the interface.
11        self.ip = ip
12        # The ssid or name of the network.
13        self.ssid = ssid

Network interface descriptor.

Interface(name: str, ip: str, ssid: str)
 7    def __init__(self, name: str, ip: str, ssid: str):
 8        # The name of the interface.
 9        self.name = name
10        # The address associated with the interface.
11        self.ip = ip
12        # The ssid or name of the network.
13        self.ssid = ssid
name
ip
ssid