Class: Google::Apis::BooksV1::AnnotatinsRange

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AnnotatinsRange

Returns a new instance of AnnotatinsRange.



499
500
501
# File 'generated/google/apis/books_v1/classes.rb', line 499

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

Instance Attribute Details

#end_offsetString

The offset from the ending position. Corresponds to the JSON property endOffset

Returns:

  • (String)


482
483
484
# File 'generated/google/apis/books_v1/classes.rb', line 482

def end_offset
  @end_offset
end

#end_positionString

The ending position for the range. Corresponds to the JSON property endPosition

Returns:

  • (String)


487
488
489
# File 'generated/google/apis/books_v1/classes.rb', line 487

def end_position
  @end_position
end

#start_offsetString

The offset from the starting position. Corresponds to the JSON property startOffset

Returns:

  • (String)


492
493
494
# File 'generated/google/apis/books_v1/classes.rb', line 492

def start_offset
  @start_offset
end

#start_positionString

The starting position for the range. Corresponds to the JSON property startPosition

Returns:

  • (String)


497
498
499
# File 'generated/google/apis/books_v1/classes.rb', line 497

def start_position
  @start_position
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



504
505
506
507
508
509
# File 'generated/google/apis/books_v1/classes.rb', line 504

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