Packages

This is a Swagger Codegen generated library for the Asterisk RESTful Interface (ARI). This is maintained by the Open Source Telephony Integration Project as a dependency for it's projects.

Current section

Files

Jump to
ostip_exari lib swagger client model dialplan_cep.ex
Raw

lib/swagger/client/model/dialplan_cep.ex

# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule Swagger.Client.Model.DialplanCep do
@moduledoc """
Dialplan location (context/extension/priority)
"""
@derive [Poison.Encoder]
defstruct [
:"context",
:"exten",
:"priority"
]
@type t :: %__MODULE__{
:"context" => String.t,
:"exten" => String.t,
:"priority" => Integer
}
end
defimpl Poison.Decoder, for: Swagger.Client.Model.DialplanCep do
def decode(value, _options) do
value
end
end