# 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.BillingPlansResponse do
@moduledoc """
Defines a billing plans response object.
"""
@derive [Poison.Encoder]
defstruct [
:billingPlans
]
@type t :: %__MODULE__{
:billingPlans => [DocuSign.Model.BillingPlan.t()] | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.BillingPlansResponse do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(:billingPlans, :list, DocuSign.Model.BillingPlan, options)
end
end