Class: Google::Apis::BooksV1::Volume::AccessInfo::Epub

Inherits:
Object
  • Object
show all
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

Overview

Information about epub content. (In LITE projection.)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Epub

Returns a new instance of Epub.



3216
3217
3218
# File 'lib/google/apis/books_v1/classes.rb', line 3216

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

Instance Attribute Details

URL to retrieve ACS token for epub download. (In LITE projection.) Corresponds to the JSON property acsTokenLink

Returns:

  • (String)


3202
3203
3204
# File 'lib/google/apis/books_v1/classes.rb', line 3202

def acs_token_link
  @acs_token_link
end

URL to download epub. (In LITE projection.) Corresponds to the JSON property downloadLink

Returns:

  • (String)


3207
3208
3209
# File 'lib/google/apis/books_v1/classes.rb', line 3207

def download_link
  @download_link
end

#is_availableBoolean Also known as: is_available?

Is a flowing text epub available either as public domain or for purchase. (In LITE projection.) Corresponds to the JSON property isAvailable

Returns:

  • (Boolean)


3213
3214
3215
# File 'lib/google/apis/books_v1/classes.rb', line 3213

def is_available
  @is_available
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3221
3222
3223
3224
3225
# File 'lib/google/apis/books_v1/classes.rb', line 3221

def update!(**args)
  @acs_token_link = args[:acs_token_link] if args.key?(:acs_token_link)
  @download_link = args[:download_link] if args.key?(:download_link)
  @is_available = args[:is_available] if args.key?(:is_available)
end