Current section

Files

Jump to
docusign lib docusign model bcc_email_address.ex
Raw

lib/docusign/model/bcc_email_address.ex

# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.BccEmailAddress do
@moduledoc """
Contains information about the BCC email address.
"""
@derive [Poison.Encoder]
defstruct [
:bccEmailAddressId,
:email
]
@type t :: %__MODULE__{
:bccEmailAddressId => String.t(),
:email => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.BccEmailAddress do
def decode(value, _options) do
value
end
end