Class: Google::Apis::BooksV1::ReadingPosition

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

Returns a new instance of ReadingPosition.



2359
2360
2361
# File 'generated/google/apis/books_v1/classes.rb', line 2359

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

Instance Attribute Details

#epub_cfi_positionString

Position in an EPUB as a CFI. Corresponds to the JSON property epubCfiPosition

Returns:

  • (String)


2326
2327
2328
# File 'generated/google/apis/books_v1/classes.rb', line 2326

def epub_cfi_position
  @epub_cfi_position
end

#gb_image_positionString

Position in a volume for image-based content. Corresponds to the JSON property gbImagePosition

Returns:

  • (String)


2331
2332
2333
# File 'generated/google/apis/books_v1/classes.rb', line 2331

def gb_image_position
  @gb_image_position
end

#gb_text_positionString

Position in a volume for text-based content. Corresponds to the JSON property gbTextPosition

Returns:

  • (String)


2336
2337
2338
# File 'generated/google/apis/books_v1/classes.rb', line 2336

def gb_text_position
  @gb_text_position
end

#kindString

Resource type for a reading position. Corresponds to the JSON property kind

Returns:

  • (String)


2341
2342
2343
# File 'generated/google/apis/books_v1/classes.rb', line 2341

def kind
  @kind
end

#pdf_positionString

Position in a PDF file. Corresponds to the JSON property pdfPosition

Returns:

  • (String)


2346
2347
2348
# File 'generated/google/apis/books_v1/classes.rb', line 2346

def pdf_position
  @pdf_position
end

#updatedDateTime

Timestamp when this reading position was last updated (formatted UTC timestamp with millisecond resolution). Corresponds to the JSON property updated

Returns:

  • (DateTime)


2352
2353
2354
# File 'generated/google/apis/books_v1/classes.rb', line 2352

def updated
  @updated
end

#volume_idString

Volume id associated with this reading position. Corresponds to the JSON property volumeId

Returns:

  • (String)


2357
2358
2359
# File 'generated/google/apis/books_v1/classes.rb', line 2357

def volume_id
  @volume_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2364
2365
2366
2367
2368
2369
2370
2371
2372
# File 'generated/google/apis/books_v1/classes.rb', line 2364

def update!(**args)
  @epub_cfi_position = args[:epub_cfi_position] if args.key?(:epub_cfi_position)
  @gb_image_position = args[:gb_image_position] if args.key?(:gb_image_position)
  @gb_text_position = args[:gb_text_position] if args.key?(:gb_text_position)
  @kind = args[:kind] if args.key?(:kind)
  @pdf_position = args[:pdf_position] if args.key?(:pdf_position)
  @updated = args[:updated] if args.key?(:updated)
  @volume_id = args[:volume_id] if args.key?(:volume_id)
end