Current section
Files
Jump to
Current section
Files
lib/models/auth_data.ex
defmodule ExMicrosoftBot.Models.AuthData do
@moduledoc """
Contains authorization related info to call the microsoft bot API
"""
defstruct [:app_id, :app_secret]
@type t :: %ExMicrosoftBot.Models.AuthData {
app_id: String.t,
app_secret: String.t
}
end