Packages

API for spectrum-management functions.

Current section

Files

Jump to
google_api_spectrum lib google_api spectrum v1explorer model vcard.ex
Raw

lib/google_api/spectrum/v1explorer/model/vcard.ex

# 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.t): 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`.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:adr => GoogleApi.Spectrum.V1explorer.Model.VcardAddress.t(),
:email => GoogleApi.Spectrum.V1explorer.Model.VcardTypedText.t(),
:fn => any(),
:org => GoogleApi.Spectrum.V1explorer.Model.VcardTypedText.t(),
:tel => GoogleApi.Spectrum.V1explorer.Model.VcardTelephone.t()
}
field(:adr, as: GoogleApi.Spectrum.V1explorer.Model.VcardAddress)
field(:email, as: GoogleApi.Spectrum.V1explorer.Model.VcardTypedText)
field(:fn)
field(:org, as: GoogleApi.Spectrum.V1explorer.Model.VcardTypedText)
field(:tel, as: GoogleApi.Spectrum.V1explorer.Model.VcardTelephone)
end
defimpl Poison.Decoder, for: GoogleApi.Spectrum.V1explorer.Model.Vcard do
def decode(value, options) do
GoogleApi.Spectrum.V1explorer.Model.Vcard.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Spectrum.V1explorer.Model.Vcard do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end