Source code for karya.entities.plan_types

from typing import Optional
from dataclasses import dataclass
from karya.entities.abstracts import AbstractPlanType


[docs] @dataclass class Recurring(AbstractPlanType): """ Represents a recurring plan type. This class extends the `AbstractPlanType` and represents a plan that repeats periodically. It includes an optional `end_at` field to specify when the recurring plan should end. Attributes: end_at (Optional[int]): The optional end date for the recurring plan (can be `None` if want to run plan indefinitely). Specify the end date in Unix timestamp format in epoch milliseconds. """ end_at: Optional[int] type: str = "karya.core.entities.PlanType.Recurring"
[docs] @dataclass class OneTime(AbstractPlanType): """ Represents a one-time plan type. This class extends the `AbstractPlanType` and represents a plan that occurs only once. """ type: str = "karya.core.entities.PlanType.OneTime"