Packages

OpenAPI Client libary for Harness Feature Flags Erlang Server SDK

Current section

Files

Jump to
harness_ff_erlang_client_api src cfapi_authentication_response.erl
Raw

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
}.