Current section
Files
Jump to
Current section
Files
lib/docusign/model/address_information.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.AddressInformation do
@moduledoc """
Contains address information.
"""
@derive [Poison.Encoder]
defstruct [
:city,
:country,
:fax,
:phone,
:state,
:street1,
:street2,
:zip
]
@type t :: %__MODULE__{
:city => String.t(),
:country => String.t(),
:fax => String.t(),
:phone => String.t(),
:state => String.t(),
:street1 => String.t(),
:street2 => String.t(),
:zip => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.AddressInformation do
def decode(value, _options) do
value
end
end