Current section

Files

Jump to
voxbone lib voxbone model save_capacity_group_response.ex
Raw

lib/voxbone/model/save_capacity_group_response.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 Voxbone.Model.SaveCapacityGroupResponse do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:capacityGroup
]
@type t :: %__MODULE__{
:capacityGroup => CapacityGroupModel
}
end
defimpl Poison.Decoder, for: Voxbone.Model.SaveCapacityGroupResponse do
import Voxbone.Deserializer
def decode(value, options) do
value
|> deserialize(:capacityGroup, :struct, Voxbone.Model.CapacityGroupModel, options)
end
end