aboutsummaryrefslogtreecommitdiff
path: root/src/PostLoginsResponseLib.hs
blob: 51617b1fcc6bdd2bab5640349a0117862371bd8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module PostLoginsResponseLib (PostLoginsResponse, makePostLoginsResponse) where

data PostLoginsResponse = PostLoginsResponse
  { access_token :: String
      , device_id :: String
      , user_id :: String
  } deriving (Eq, Show)

makePostLoginsResponse :: String -> String -> String -> PostLoginsResponse
makePostLoginsResponse = PostLoginsResponse