Class: Google::Apis::DocsV1::InsertPageBreakRequest

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

Overview

Inserts a page break followed by a newline at the specified location.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InsertPageBreakRequest

Returns a new instance of InsertPageBreakRequest.



2168
2169
2170
# File 'generated/google/apis/docs_v1/classes.rb', line 2168

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

Instance Attribute Details

#end_of_segment_locationGoogle::Apis::DocsV1::EndOfSegmentLocation

Location at the end of a body, header, footer or footnote. The location is immediately before the last newline in the document segment. Corresponds to the JSON property endOfSegmentLocation



2161
2162
2163
# File 'generated/google/apis/docs_v1/classes.rb', line 2161

def end_of_segment_location
  @end_of_segment_location
end

#locationGoogle::Apis::DocsV1::Location

A particular location in the document. Corresponds to the JSON property location



2166
2167
2168
# File 'generated/google/apis/docs_v1/classes.rb', line 2166

def location
  @location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2173
2174
2175
2176
# File 'generated/google/apis/docs_v1/classes.rb', line 2173

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