Current section

Files

Jump to
docusign lib docusign model cloud_storage_providers.ex
Raw

lib/docusign/model/cloud_storage_providers.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.CloudStorageProviders do
@moduledoc """
The CloudStorageProviders resource provides methods that allow you to manage the cloud storage providers associate with an account.
"""
alias DocuSign.Deserializer
alias DocuSign.Model.CloudStorageProvider
@derive Jason.Encoder
defstruct [
:storageProviders
]
@type t :: %__MODULE__{
:storageProviders => [CloudStorageProvider.t()] | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:storageProviders, :list, CloudStorageProvider)
end
end