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/interval.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.Interval do
@moduledoc """
The billing frequency. Must be one of 'month' or 'year'.
"""
@derive [Poison.Encoder]
defstruct [
]
@type t :: %__MODULE__{
}
end
defimpl Poison.Decoder, for: ThinkificAdminAPI.Model.Interval do
def decode(value, _options) do
value
end
end