# coding: utf-8

"""
    LINE Messaging API

    This document describes LINE Messaging API.  # noqa: E501

    The version of the OpenAPI document: 0.0.1
    Generated by OpenAPI Generator (https://openapi-generator.tech)

    Do not edit the class manually.
"""


import json
import pprint
import re  # noqa: F401
from aenum import Enum, no_arg





class SubscriptionPeriodDemographic(str, Enum):
    """
    SubscriptionPeriodDemographic
    """

    """
    allowed enum values
    """
    DAY_7 = 'day_7'
    DAY_30 = 'day_30'
    DAY_90 = 'day_90'
    DAY_180 = 'day_180'
    DAY_365 = 'day_365'

    @classmethod
    def from_json(cls, json_str: str) -> SubscriptionPeriodDemographic:
        """Create an instance of SubscriptionPeriodDemographic from a JSON string"""
        return SubscriptionPeriodDemographic(json.loads(json_str))


