# 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.ConnectOAuthConfig do
@moduledoc """
A complex object describing a Connect OAuth configuration.
"""
@derive [Poison.Encoder]
defstruct [
:authorizationServerUrl,
:clientId,
:clientSecret,
:customParameters,
:scope
]
@type t :: %__MODULE__{
:authorizationServerUrl => String.t() | nil,
:clientId => String.t() | nil,
:clientSecret => String.t() | nil,
:customParameters => String.t() | nil,
:scope => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ConnectOAuthConfig do
def decode(value, _options) do
value
end
end