Current section
Files
Jump to
Current section
Files
src/cfapi_authentication_response.erl
-module(cfapi_authentication_response).
-export([encode/1]).
-export_type([cfapi_authentication_response/0]).
-type cfapi_authentication_response() ::
#{ 'authToken' := binary()
}.
encode(#{ 'authToken' := AuthToken
}) ->
#{ 'authToken' => AuthToken
}.