Class: Google::Apis::BooksV1::VolumeAnnotation::ContentRanges

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

Overview

The content ranges to identify the selected text.

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) ⇒ ContentRanges

Returns a new instance of ContentRanges



4124
4125
4126
# File 'generated/google/apis/books_v1/classes.rb', line 4124

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

Instance Attribute Details

#cfi_rangeGoogle::Apis::BooksV1::AnnotatinsRange

Range in CFI format for this annotation for version above. Corresponds to the JSON property cfiRange



4107
4108
4109
# File 'generated/google/apis/books_v1/classes.rb', line 4107

def cfi_range
  @cfi_range
end

#content_versionString

Content version applicable to ranges below. Corresponds to the JSON property contentVersion

Returns:

  • (String)


4112
4113
4114
# File 'generated/google/apis/books_v1/classes.rb', line 4112

def content_version
  @content_version
end

#gb_image_rangeGoogle::Apis::BooksV1::AnnotatinsRange

Range in GB image format for this annotation for version above. Corresponds to the JSON property gbImageRange



4117
4118
4119
# File 'generated/google/apis/books_v1/classes.rb', line 4117

def gb_image_range
  @gb_image_range
end

#gb_text_rangeGoogle::Apis::BooksV1::AnnotatinsRange

Range in GB text format for this annotation for version above. Corresponds to the JSON property gbTextRange



4122
4123
4124
# File 'generated/google/apis/books_v1/classes.rb', line 4122

def gb_text_range
  @gb_text_range
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4129
4130
4131
4132
4133
4134
# File 'generated/google/apis/books_v1/classes.rb', line 4129

def update!(**args)
  @cfi_range = args[:cfi_range] if args.key?(:cfi_range)
  @content_version = args[:content_version] if args.key?(:content_version)
  @gb_image_range = args[:gb_image_range] if args.key?(:gb_image_range)
  @gb_text_range = args[:gb_text_range] if args.key?(:gb_text_range)
end