Packages

This library provides Elixir API wrapper for the Microsoft Bot Framework.

Current section

Files

Jump to
ex_microsoftbot lib models auth_data.ex
Raw

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