module Model ( Model , initialModel ) where import List import Model.Payment exposing (Payments) type alias Model = { payments : Maybe Payments , forbiddenAccess : Bool } initialModel : Model initialModel = { payments = Nothing , forbiddenAccess = False }