Current section

Files

Jump to
docusign lib docusign model recipient_sms_authentication.ex
Raw

lib/docusign/model/recipient_sms_authentication.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.RecipientSmsAuthentication do
@moduledoc """
Contains the element senderProvidedNumbers which is an Array of phone numbers the recipient can use for SMS text authentication.
"""
@derive [Poison.Encoder]
defstruct [
:senderProvidedNumbers
]
@type t :: %__MODULE__{
:senderProvidedNumbers => [String.t()]
}
end
defimpl Poison.Decoder, for: DocuSign.Model.RecipientSmsAuthentication do
def decode(value, _options) do
value
end
end