Current section
Files
Jump to
Current section
Files
lib/docusign/model/address_information_v2.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.AddressInformationV2 do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:address1,
:address2,
:city,
:country,
:fax,
:phone,
:postalCode,
:stateOrProvince
]
@type t :: %__MODULE__{
:address1 => String.t(),
:address2 => String.t(),
:city => String.t(),
:country => String.t(),
:fax => String.t(),
:phone => String.t(),
:postalCode => String.t(),
:stateOrProvince => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.AddressInformationV2 do
def decode(value, _options) do
value
end
end