class Google::Apis::DriveV2::About::DriveTheme
Attributes
background_image_link[RW]
A link to this theme's background image. Corresponds to the JSON property `backgroundImageLink` @return [String]
color_rgb[RW]
The color of this theme as an RGB hex string. Corresponds to the JSON property `colorRgb` @return [String]
id[RW]
The ID of the theme. Corresponds to the JSON property `id` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/drive_v2/classes.rb, line 288 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/drive_v2/classes.rb, line 293 def update!(**args) @background_image_link = args[:background_image_link] if args.key?(:background_image_link) @color_rgb = args[:color_rgb] if args.key?(:color_rgb) @id = args[:id] if args.key?(:id) end