class Google::Apis::BooksV1::Annotation::LayerSummary
Attributes
allowed_character_count[RW]
Maximum allowed characters on this layer, especially for the “copy” layer. Corresponds to the JSON property `allowedCharacterCount` @return [Fixnum]
limit_type[RW]
Type of limitation on this layer. “limited” or “unlimited” for the “copy” layer. Corresponds to the JSON property `limitType` @return [String]
remaining_character_count[RW]
Remaining allowed characters on this layer, especially for the “copy” layer. Corresponds to the JSON property `remainingCharacterCount` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/books_v1/classes.rb, line 248 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 253 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) end