Current section

Files

Jump to
docusign lib docusign model connect_salesforce_field.ex
Raw

lib/docusign/model/connect_salesforce_field.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.ConnectSalesforceField do
@moduledoc """
This object is used to match a DocuSign field to a Salesforce field so that DocuSign can send information to your Salesforce account.
"""
@derive [Poison.Encoder]
defstruct [
:dsAttribute,
:dsLink,
:dsNode,
:id,
:sfField,
:sfFieldName,
:sfFolder,
:sfLockedValue
]
@type t :: %__MODULE__{
:dsAttribute => String.t() | nil,
:dsLink => String.t() | nil,
:dsNode => String.t() | nil,
:id => String.t() | nil,
:sfField => String.t() | nil,
:sfFieldName => String.t() | nil,
:sfFolder => String.t() | nil,
:sfLockedValue => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ConnectSalesforceField do
def decode(value, _options) do
value
end
end