Packages
ostip_exari
0.1.0
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
Current section
Files
lib/swagger/client/model/stasis_start.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.StasisStart do
@moduledoc """
Notification that a channel has entered a Stasis application.
"""
@derive [Poison.Encoder]
defstruct [
:"args",
:"channel",
:"replace_channel"
]
@type t :: %__MODULE__{
:"args" => ListString,
:"channel" => Channel,
:"replace_channel" => Channel
}
end
defimpl Poison.Decoder, for: Swagger.Client.Model.StasisStart do
import Swagger.Client.Deserializer
def decode(value, options) do
value
|> deserialize(:"args", :struct, Swagger.Client.Model.ListString, options)
|> deserialize(:"channel", :struct, Swagger.Client.Model.Channel, options)
|> deserialize(:"replace_channel", :struct, Swagger.Client.Model.Channel, options)
end
end