Packages
The Elixir SDK for the Thinkific Admin API
Retired package: Renamed - Package is being renamed to ex_thinkific_api
Current section
Files
Jump to
Current section
Files
lib/thinkific_admin_api/model/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 ThinkificAdminAPI.Model.GroupResponse do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:"id",
:"name",
:"token",
:"created_at"
]
@type t :: %__MODULE__{
:"id" => float(),
:"name" => String.t,
:"token" => String.t,
:"created_at" => DateTime.t
}
end
defimpl Poison.Decoder, for: ThinkificAdminAPI.Model.GroupResponse do
def decode(value, _options) do
value
end
end