from enum import StrEnum class PaySchemeType(StrEnum): hourly = 'hourly' daily = 'daily' monthly = 'monthly'