Packages
Google Slides API client library. Reads and writes Google Slides presentations.
Current section
Files
Jump to
Current section
Files
lib/google_api/slides/v1/model/presentation.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.Slides.V1.Model.Presentation do
@moduledoc """
A Google Slides presentation.
## Attributes
* `layouts` (*type:* `list(GoogleApi.Slides.V1.Model.Page.t)`, *default:* `nil`) - The layouts in the presentation. A layout is a template that determines how content is arranged and styled on the slides that inherit from that layout.
* `locale` (*type:* `String.t`, *default:* `nil`) - The locale of the presentation, as an IETF BCP 47 language tag.
* `masters` (*type:* `list(GoogleApi.Slides.V1.Model.Page.t)`, *default:* `nil`) - The slide masters in the presentation. A slide master contains all common page elements and the common properties for a set of layouts. They serve three purposes: - Placeholder shapes on a master contain the default text styles and shape properties of all placeholder shapes on pages that use that master. - The master page properties define the common page properties inherited by its layouts. - Any other shapes on the master slide appear on all slides using that master, regardless of their layout.
* `notesMaster` (*type:* `GoogleApi.Slides.V1.Model.Page.t`, *default:* `nil`) - The notes master in the presentation. It serves three purposes: - Placeholder shapes on a notes master contain the default text styles and shape properties of all placeholder shapes on notes pages. Specifically, a `SLIDE_IMAGE` placeholder shape contains the slide thumbnail, and a `BODY` placeholder shape contains the speaker notes. - The notes master page properties define the common page properties inherited by all notes pages. - Any other shapes on the notes master appears on all notes pages. The notes master is read-only.
* `pageSize` (*type:* `GoogleApi.Slides.V1.Model.Size.t`, *default:* `nil`) - The size of pages in the presentation.
* `presentationId` (*type:* `String.t`, *default:* `nil`) - The ID of the presentation.
* `revisionId` (*type:* `String.t`, *default:* `nil`) - The revision ID of the presentation. Can be used in update requests to assert that the presentation revision hasn't changed since the last read operation. Only populated if the user has edit access to the presentation. The format of the revision ID may change over time, so it should be treated opaquely. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the presentation has not changed. Conversely, a changed ID (for the same presentation and user) usually means the presentation has been updated; however, a changed ID can also be due to internal factors such as ID format changes.
* `slides` (*type:* `list(GoogleApi.Slides.V1.Model.Page.t)`, *default:* `nil`) - The slides in the presentation. A slide inherits properties from a slide layout.
* `title` (*type:* `String.t`, *default:* `nil`) - The title of the presentation.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:layouts => list(GoogleApi.Slides.V1.Model.Page.t()),
:locale => String.t(),
:masters => list(GoogleApi.Slides.V1.Model.Page.t()),
:notesMaster => GoogleApi.Slides.V1.Model.Page.t(),
:pageSize => GoogleApi.Slides.V1.Model.Size.t(),
:presentationId => String.t(),
:revisionId => String.t(),
:slides => list(GoogleApi.Slides.V1.Model.Page.t()),
:title => String.t()
}
field(:layouts, as: GoogleApi.Slides.V1.Model.Page, type: :list)
field(:locale)
field(:masters, as: GoogleApi.Slides.V1.Model.Page, type: :list)
field(:notesMaster, as: GoogleApi.Slides.V1.Model.Page)
field(:pageSize, as: GoogleApi.Slides.V1.Model.Size)
field(:presentationId)
field(:revisionId)
field(:slides, as: GoogleApi.Slides.V1.Model.Page, type: :list)
field(:title)
end
defimpl Poison.Decoder, for: GoogleApi.Slides.V1.Model.Presentation do
def decode(value, options) do
GoogleApi.Slides.V1.Model.Presentation.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Slides.V1.Model.Presentation do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end