Class: Google::Apis::SlidesV1::WriteControl
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SlidesV1::WriteControl
 
- 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
- 
  
    
      #required_revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The revision ID of the presentation required for the write request. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WriteControl 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of WriteControl. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WriteControl
Returns a new instance of WriteControl
| 5204 5205 5206 | # File 'generated/google/apis/slides_v1/classes.rb', line 5204 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#required_revision_id ⇒ String
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
| 5202 5203 5204 | # File 'generated/google/apis/slides_v1/classes.rb', line 5202 def required_revision_id @required_revision_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5209 5210 5211 | # File 'generated/google/apis/slides_v1/classes.rb', line 5209 def update!(**args) @required_revision_id = args[:required_revision_id] if args.key?(:required_revision_id) end |