class Google::Apis::DocsV1::BatchUpdateDocumentRequest
Request
message for BatchUpdateDocument.
Attributes
requests[RW]
A list of updates to apply to the document. Corresponds to the JSON property `requests` @return [Array<Google::Apis::DocsV1::Request>]
write_control[RW]
Provides control over how write requests are executed. Corresponds to the JSON property `writeControl` @return [Google::Apis::DocsV1::WriteControl]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 136 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/docs_v1/classes.rb, line 141 def update!(**args) @requests = args[:requests] if args.key?(:requests) @write_control = args[:write_control] if args.key?(:write_control) end