coercer.structures.MethodType

 1#!/usr/bin/env python3
 2# -*- coding: utf-8 -*-
 3# File name          : MethodTypes.py
 4# Author             : Podalirius (@podalirius_)
 5# Date created       : 15 Sep 2022
 6
 7from enum import Enum
 8
 9
10class MethodType(Enum):
11    """
12    Enum class MethodType
13    """
14
15    MICROSOFT_PROTOCOL = 0x01
16
17    OTHER = 0xff
class MethodType(enum.Enum):
11class MethodType(Enum):
12    """
13    Enum class MethodType
14    """
15
16    MICROSOFT_PROTOCOL = 0x01
17
18    OTHER = 0xff

Enum class MethodType

MICROSOFT_PROTOCOL = <MethodType.MICROSOFT_PROTOCOL: 1>
OTHER = <MethodType.OTHER: 255>
Inherited Members
enum.Enum
name
value