Current section
Files
Jump to
Current section
Files
lib/docusign/model/user_social_id_result.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.UserSocialIdResult do
@moduledoc """
"""
alias DocuSign.Deserializer
alias DocuSign.Model.SocialAccountInformation
@derive Jason.Encoder
defstruct [
:socialAccountInformation,
:userId
]
@type t :: %__MODULE__{
:socialAccountInformation => [SocialAccountInformation.t()] | nil,
:userId => String.t() | nil
}
def decode(value) do
value
|> Deserializer.deserialize(
:socialAccountInformation,
:list,
SocialAccountInformation
)
end
end