Packages

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

Current section

Files

Jump to
ex_microsoftbot lib models entity.ex
Raw

lib/models/entity.ex

defmodule ExMicrosoftBot.Models.Entity do
@moduledoc """
Microsoft bot entity structure
"""
@derive [Poison.Encoder]
defstruct [:type, :name]
@type t :: %ExMicrosoftBot.Models.Entity{
type: String.t,
name: String.t
}
@doc false
def decoding_map() do
%ExMicrosoftBot.Models.Entity{}
end
end