Current section

Files

Jump to
docusign lib docusign model app_store_product.ex
Raw

lib/docusign/model/app_store_product.ex

# 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.AppStoreProduct do
@moduledoc """
Contains information about an APP store product.
"""
@derive [Poison.Encoder]
defstruct [
:marketPlace,
:productId
]
@type t :: %__MODULE__{
:marketPlace => String.t() | nil,
:productId => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.AppStoreProduct do
def decode(value, _options) do
value
end
end