Class: Google::Apis::DriveV3::About::DriveTheme
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::About::DriveTheme
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v3/classes.rb,
lib/google/apis/drive_v3/representations.rb,
lib/google/apis/drive_v3/representations.rb
Instance Attribute Summary collapse
-
#background_image_link ⇒ String
A link to this theme's background image.
-
#color_rgb ⇒ String
The color of this theme as an RGB hex string.
-
#id ⇒ String
The ID of the theme.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DriveTheme
constructor
A new instance of DriveTheme.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DriveTheme
Returns a new instance of DriveTheme.
138 139 140 |
# File 'lib/google/apis/drive_v3/classes.rb', line 138 def initialize(**args) update!(**args) end |
Instance Attribute Details
#background_image_link ⇒ String
A link to this theme's background image.
Corresponds to the JSON property backgroundImageLink
126 127 128 |
# File 'lib/google/apis/drive_v3/classes.rb', line 126 def background_image_link @background_image_link end |
#color_rgb ⇒ String
The color of this theme as an RGB hex string.
Corresponds to the JSON property colorRgb
131 132 133 |
# File 'lib/google/apis/drive_v3/classes.rb', line 131 def color_rgb @color_rgb end |
#id ⇒ String
The ID of the theme.
Corresponds to the JSON property id
136 137 138 |
# File 'lib/google/apis/drive_v3/classes.rb', line 136 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
143 144 145 146 147 |
# File 'lib/google/apis/drive_v3/classes.rb', line 143 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 |