Current section

Files

Jump to
ex_thinkific_api lib thinkific model get_group_analysts_response.ex
Raw

lib/thinkific/model/get_group_analysts_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 Thinkific.Model.GetGroupAnalystsResponse do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:"group_analysts"
]
@type t :: %__MODULE__{
:"group_analysts" => [float()]
}
end
defimpl Poison.Decoder, for: Thinkific.Model.GetGroupAnalystsResponse do
def decode(value, _options) do
value
end
end