# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule DocuSign.Model.SeatDiscount do @moduledoc """ This object contains information about a seat discount. """ @derive [Poison.Encoder] defstruct [ :beginSeatCount, :discountPercent, :endSeatCount ] @type t :: %__MODULE__{ :beginSeatCount => String.t() | nil, :discountPercent => String.t() | nil, :endSeatCount => String.t() | nil } end defimpl Poison.Decoder, for: DocuSign.Model.SeatDiscount do def decode(value, _options) do value end end