# -*- coding: utf-8 -*-
[docs]class SpeedEnum(object):
"""Implementation of the 'Speed' enum.
Specifies the speed of this interface.
Attributes:
ENUM_1GBITS: TODO: type description here.
ENUM_10GBITS: TODO: type description here.
ENUM_25GBITS: TODO: type description here.
ENUM_40GBITS: TODO: type description here.
ENUM_100GBITS: TODO: type description here.
UNKNOWN: TODO: type description here.
"""
ENUM_1GBITS = '1Gbit/s'
ENUM_10GBITS = '10Gbit/s'
ENUM_25GBITS = '25Gbit/s'
ENUM_40GBITS = '40Gbit/s'
ENUM_100GBITS = '100Gbit/s'
UNKNOWN = 'Unknown'