Current section
Files
Jump to
Current section
Files
lib/docusign/model/contact_update_response.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.ContactUpdateResponse do
@moduledoc """
This response objects shows the updated details for the contacts.
"""
alias DocuSign.Deserializer
alias DocuSign.Model.Contact
@derive Jason.Encoder
defstruct [
:contacts
]
@type t :: %__MODULE__{
:contacts => [Contact.t()] | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:contacts, :list, Contact)
end
end