module LoggedIn.Action ( Action(..) ) where import Model.Payment exposing (Payment, PaymentId, Frequency) import Model.Income exposing (IncomeId) import LoggedIn.Home.Action as HomeAction type Action = NoOp | HomeAction HomeAction.Action | AddPayment String String Frequency | ValidateAddPayment PaymentId String Int Frequency | DeletePayment Payment Frequency | ValidateDeletePayment Payment Frequency | UpdateIncome Int | ValidateUpdateIncome IncomeId Int