# 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.PlaybackContinuing do @moduledoc """ Event showing the continuation of a media playback operation from one media URI to the next in the list. """ @derive [Poison.Encoder] defstruct [ :"playback" ] @type t :: %__MODULE__{ :"playback" => Playback } end defimpl Poison.Decoder, for: Swagger.Client.Model.PlaybackContinuing do import Swagger.Client.Deserializer def decode(value, options) do value |> deserialize(:"playback", :struct, Swagger.Client.Model.Playback, options) end end