Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkPageSpan
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkPageSpan
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Page span of the chunk.
Instance Attribute Summary collapse
-
#page_end ⇒ Fixnum
The end page of the chunk.
-
#page_start ⇒ Fixnum
The start page of the chunk.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ChunkPageSpan
constructor
A new instance of GoogleCloudDiscoveryengineV1ChunkPageSpan.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ChunkPageSpan
Returns a new instance of GoogleCloudDiscoveryengineV1ChunkPageSpan.
2816 2817 2818 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2816 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_end ⇒ Fixnum
The end page of the chunk.
Corresponds to the JSON property pageEnd
2809 2810 2811 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2809 def page_end @page_end end |
#page_start ⇒ Fixnum
The start page of the chunk.
Corresponds to the JSON property pageStart
2814 2815 2816 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2814 def page_start @page_start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2821 2822 2823 2824 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2821 def update!(**args) @page_end = args[:page_end] if args.key?(:page_end) @page_start = args[:page_start] if args.key?(:page_start) end |