class Google::Apis::BooksV1::Volume::VolumeInfo::IndustryIdentifier
Attributes
identifier[RW]
Industry specific volume identifier. Corresponds to the JSON property `identifier` @return [String]
type[RW]
Identifier type. Possible values are ISBN_10, ISBN_13, ISSN and OTHER. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/books_v1/classes.rb, line 4131 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 4136 def update!(**args) @identifier = args[:identifier] if args.key?(:identifier) @type = args[:type] if args.key?(:type) end