class Google::Apis::BooksV1::LoadingResource

Attributes

author[RW]

Corresponds to the JSON property `author` @return [String]

processing_state[RW]

Corresponds to the JSON property `processingState` @return [String]

title[RW]

Corresponds to the JSON property `title` @return [String]

volume_id[RW]

Corresponds to the JSON property `volumeId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/books_v1/classes.rb, line 535
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/books_v1/classes.rb, line 540
def update!(**args)
  @author = args[:author] if args.key?(:author)
  @processing_state = args[:processing_state] if args.key?(:processing_state)
  @title = args[:title] if args.key?(:title)
  @volume_id = args[:volume_id] if args.key?(:volume_id)
end