Class: Google::Apis::SlidesV1::WriteControl

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb

Overview

Provides control over how write requests are executed.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WriteControl

Returns a new instance of WriteControl



3010
3011
3012
# File 'generated/google/apis/slides_v1/classes.rb', line 3010

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#required_revision_idString

The revision ID of the presentation required for the write request. If specified and the required_revision_id doesn't exactly match the presentation's current revision_id, the request will not be processed and will return a 400 bad request error. Corresponds to the JSON property requiredRevisionId

Returns:

  • (String)


3008
3009
3010
# File 'generated/google/apis/slides_v1/classes.rb', line 3008

def required_revision_id
  @required_revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3015
3016
3017
# File 'generated/google/apis/slides_v1/classes.rb', line 3015

def update!(**args)
  @required_revision_id = args[:required_revision_id] if args.key?(:required_revision_id)
end