geo-therminator/lib/geo_therminator/pump_api/auth/tokens.ex

13 lines
250 B
Elixir
Raw Normal View History

2023-01-11 18:37:27 +00:00
defmodule GeoTherminator.PumpAPI.Auth.Tokens do
require Record
Record.defrecord(:record, :tokens, [
:access_token,
:access_token_expiry,
:refresh_token,
:refresh_token_expiry
])
@type t :: :pump_api@auth@tokens.tokens()
2023-01-11 18:37:27 +00:00
end