# Copyright 2017 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # 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 GoogleApi.Spectrum.V1explorer.Model.Vcard do @moduledoc """ A vCard-in-JSON message that contains only the fields needed for PAWS: - fn: Full name of an individual - org: Name of the organization - adr: Address fields - tel: Telephone numbers - email: Email addresses ## Attributes - adr (VcardAddress): The street address of the entity. Defaults to: `null`. - email (VcardTypedText): An email address that can be used to reach the contact. Defaults to: `null`. - fn (String): The full name of the contact person. For example: John A. Smith. Defaults to: `null`. - org (VcardTypedText): The organization associated with the registering entity. Defaults to: `null`. - tel (VcardTelephone): A telephone number that can be used to call the contact. Defaults to: `null`. """ defstruct [ :"adr", :"email", :"fn", :"org", :"tel" ] end defimpl Poison.Decoder, for: GoogleApi.Spectrum.V1explorer.Model.Vcard do import GoogleApi.Spectrum.V1explorer.Deserializer def decode(value, options) do value |> deserialize(:"adr", :struct, GoogleApi.Spectrum.V1explorer.Model.VcardAddress, options) |> deserialize(:"email", :struct, GoogleApi.Spectrum.V1explorer.Model.VcardTypedText, options) |> deserialize(:"org", :struct, GoogleApi.Spectrum.V1explorer.Model.VcardTypedText, options) |> deserialize(:"tel", :struct, GoogleApi.Spectrum.V1explorer.Model.VcardTelephone, options) end end defimpl Poison.Encoder, for: GoogleApi.Spectrum.V1explorer.Model.Vcard do def encode(value, options) do GoogleApi.Spectrum.V1explorer.Deserializer.serialize_non_nil(value, options) end end