Class: Google::Apis::BooksV1::Volume::AccessInfo::Pdf

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

Information about pdf content. (In LITE projection.)

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

Returns a new instance of Pdf



2886
2887
2888
# File 'generated/google/apis/books_v1/classes.rb', line 2886

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

Instance Attribute Details

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

Returns:

  • (String)


2872
2873
2874
# File 'generated/google/apis/books_v1/classes.rb', line 2872

def acs_token_link
  @acs_token_link
end

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

Returns:

  • (String)


2877
2878
2879
# File 'generated/google/apis/books_v1/classes.rb', line 2877

def download_link
  @download_link
end

#is_availableBoolean Also known as: is_available?

Is a scanned image pdf available either as public domain or for purchase. (In LITE projection.) Corresponds to the JSON property isAvailable

Returns:

  • (Boolean)


2883
2884
2885
# File 'generated/google/apis/books_v1/classes.rb', line 2883

def is_available
  @is_available
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2891
2892
2893
2894
2895
# File 'generated/google/apis/books_v1/classes.rb', line 2891

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