Packages

Pollen API client library. The Pollen API.

Current section

Files

Jump to
google_api_pollen lib google_api pollen v1 model plant_info.ex
Raw

lib/google_api/pollen/v1/model/plant_info.ex

# Copyright 2019 Google LLC
#
# 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 file is auto generated by the elixir code generator program.
# Do not edit this file manually.
defmodule GoogleApi.Pollen.V1.Model.PlantInfo do
@moduledoc """
This object contains the daily information on specific plant.
## Attributes
* `code` (*type:* `String.t`, *default:* `nil`) - The plant code name. For example: "COTTONWOOD". A list of all available codes could be found here.
* `displayName` (*type:* `String.t`, *default:* `nil`) - A human readable representation of the plant name. Example: “Cottonwood".
* `inSeason` (*type:* `boolean()`, *default:* `nil`) - Indication of either the plant is in season or not.
* `indexInfo` (*type:* `GoogleApi.Pollen.V1.Model.IndexInfo.t`, *default:* `nil`) - This object contains data representing specific pollen index value, category and description.
* `plantDescription` (*type:* `GoogleApi.Pollen.V1.Model.PlantDescription.t`, *default:* `nil`) - Contains general information about plants, including details on their seasonality, special shapes and colors, information about allergic cross-reactions, and plant photos.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:code => String.t() | nil,
:displayName => String.t() | nil,
:inSeason => boolean() | nil,
:indexInfo => GoogleApi.Pollen.V1.Model.IndexInfo.t() | nil,
:plantDescription => GoogleApi.Pollen.V1.Model.PlantDescription.t() | nil
}
field(:code)
field(:displayName)
field(:inSeason)
field(:indexInfo, as: GoogleApi.Pollen.V1.Model.IndexInfo)
field(:plantDescription, as: GoogleApi.Pollen.V1.Model.PlantDescription)
end
defimpl Poison.Decoder, for: GoogleApi.Pollen.V1.Model.PlantInfo do
def decode(value, options) do
GoogleApi.Pollen.V1.Model.PlantInfo.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Pollen.V1.Model.PlantInfo do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end