Current section
Files
Jump to
Current section
Files
lib/docusign/model/connect_salesforce_field.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.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 Jason.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
}
def decode(value) do
value
end
end