Class: Google::Apis::BooksV1::AnnotatinsRange
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::AnnotatinsRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/books_v1/classes.rb,
lib/google/apis/books_v1/representations.rb,
lib/google/apis/books_v1/representations.rb
Instance Attribute Summary collapse
-
#end_offset ⇒ String
The offset from the ending position.
-
#end_position ⇒ String
The ending position for the range.
-
#start_offset ⇒ String
The offset from the starting position.
-
#start_position ⇒ String
The starting position for the range.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnnotatinsRange
constructor
A new instance of AnnotatinsRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AnnotatinsRange
Returns a new instance of AnnotatinsRange.
430 431 432 |
# File 'lib/google/apis/books_v1/classes.rb', line 430 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_offset ⇒ String
The offset from the ending position.
Corresponds to the JSON property endOffset
413 414 415 |
# File 'lib/google/apis/books_v1/classes.rb', line 413 def end_offset @end_offset end |
#end_position ⇒ String
The ending position for the range.
Corresponds to the JSON property endPosition
418 419 420 |
# File 'lib/google/apis/books_v1/classes.rb', line 418 def end_position @end_position end |
#start_offset ⇒ String
The offset from the starting position.
Corresponds to the JSON property startOffset
423 424 425 |
# File 'lib/google/apis/books_v1/classes.rb', line 423 def start_offset @start_offset end |
#start_position ⇒ String
The starting position for the range.
Corresponds to the JSON property startPosition
428 429 430 |
# File 'lib/google/apis/books_v1/classes.rb', line 428 def start_position @start_position end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
435 436 437 438 439 440 |
# File 'lib/google/apis/books_v1/classes.rb', line 435 def update!(**args) @end_offset = args[:end_offset] if args.key?(:end_offset) @end_position = args[:end_position] if args.key?(:end_position) @start_offset = args[:start_offset] if args.key?(:start_offset) @start_position = args[:start_position] if args.key?(:start_position) end |