|
| 1 | +# Copyright 2019 Google LLC |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +# NOTE: This file is auto generated by the elixir code generator program. |
| 16 | +# Do not edit this file manually. |
| 17 | + |
| 18 | +defmodule GoogleApi.Calendar.V3.Model.EventBirthdayProperties do |
| 19 | + @moduledoc """ |
| 20 | +
|
| 21 | +
|
| 22 | + ## Attributes |
| 23 | +
|
| 24 | + * `contact` (*type:* `String.t`, *default:* `nil`) - Resource name of the contact this birthday event is linked to. This can be used to fetch contact details from People API. Format: "people/c12345". Read-only. |
| 25 | + * `customTypeName` (*type:* `String.t`, *default:* `nil`) - Custom type label specified for this event. This is populated if birthdayProperties.type is set to "custom". Read-only. |
| 26 | + * `type` (*type:* `String.t`, *default:* `birthday`) - Type of birthday or special event. Possible values are: |
| 27 | + - "anniversary" - An anniversary other than birthday. Always has a contact. |
| 28 | + - "birthday" - A birthday event. This is the default value. |
| 29 | + - "custom" - A special date whose label is further specified in the customTypeName field. Always has a contact. |
| 30 | + - "other" - A special date which does not fall into the other categories, and does not have a custom label. Always has a contact. |
| 31 | + - "self" - Calendar owner's own birthday. Cannot have a contact. The Calendar API only supports creating events with the type "birthday". The type cannot be changed after the event is created. |
| 32 | + """ |
| 33 | + |
| 34 | + use GoogleApi.Gax.ModelBase |
| 35 | + |
| 36 | + @type t :: %__MODULE__{ |
| 37 | + :contact => String.t() | nil, |
| 38 | + :customTypeName => String.t() | nil, |
| 39 | + :type => String.t() | nil |
| 40 | + } |
| 41 | + |
| 42 | + field(:contact) |
| 43 | + field(:customTypeName) |
| 44 | + field(:type) |
| 45 | +end |
| 46 | + |
| 47 | +defimpl Poison.Decoder, for: GoogleApi.Calendar.V3.Model.EventBirthdayProperties do |
| 48 | + def decode(value, options) do |
| 49 | + GoogleApi.Calendar.V3.Model.EventBirthdayProperties.decode(value, options) |
| 50 | + end |
| 51 | +end |
| 52 | + |
| 53 | +defimpl Poison.Encoder, for: GoogleApi.Calendar.V3.Model.EventBirthdayProperties do |
| 54 | + def encode(value, options) do |
| 55 | + GoogleApi.Gax.ModelBase.encode(value, options) |
| 56 | + end |
| 57 | +end |
0 commit comments