class Google::Apis::BooksV1::Volume::AccessInfo::Pdf
Information about pdf content. (In LITE projection.)
Attributes
acs_token_link[RW]
URL to retrieve ACS token for pdf download. (In LITE projection.) Corresponds to the JSON property `acsTokenLink` @return [String]
download_link[RW]
URL to download pdf. (In LITE projection.) Corresponds to the JSON property `downloadLink` @return [String]
is_available[RW]
Is a scanned image pdf available either as public domain or for purchase. (In LITE projection.) Corresponds to the JSON property `isAvailable` @return [Boolean]
is_available?[RW]
Is a scanned image pdf available either as public domain or for purchase. (In LITE projection.) Corresponds to the JSON property `isAvailable` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/books_v1/classes.rb, line 3250 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/books_v1/classes.rb, line 3255 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