class Google::Apis::BooksV1::Volume::UserInfo::Copy

Copy/Paste accounting information.

Attributes

allowed_character_count[RW]

Corresponds to the JSON property `allowedCharacterCount` @return [Fixnum]

limit_type[RW]

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

remaining_character_count[RW]

Corresponds to the JSON property `remainingCharacterCount` @return [Fixnum]

updated[RW]

Corresponds to the JSON property `updated` @return [DateTime]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/books_v1/classes.rb, line 3351
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 3356
def update!(**args)
  @allowed_character_count = args[:allowed_character_count] if args.key?(:allowed_character_count)
  @limit_type = args[:limit_type] if args.key?(:limit_type)
  @remaining_character_count = args[:remaining_character_count] if args.key?(:remaining_character_count)
  @updated = args[:updated] if args.key?(:updated)
end