# 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.Variable do @moduledoc """ The value of a channel variable """ @derive [Poison.Encoder] defstruct [ :"value" ] @type t :: %__MODULE__{ :"value" => String.t } end defimpl Poison.Decoder, for: Swagger.Client.Model.Variable do def decode(value, _options) do value end end