Current section

Files

Jump to
docusign lib docusign model bcc_email_address.ex
Raw

lib/docusign/model/bcc_email_address.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.BccEmailAddress do
@moduledoc """
Contains information about the BCC email address.
"""
@derive Jason.Encoder
defstruct [
:bccEmailAddressId,
:email
]
@type t :: %__MODULE__{
:bccEmailAddressId => String.t() | nil,
:email => String.t() | nil
}
def decode(value) do
value
end
end