Class: Google::Apis::DriveV3::About::TeamDriveTheme
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::About::TeamDriveTheme
- 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
Deprecated: Use
driveThemes/backgroundImageLink
instead. -
#color_rgb ⇒ String
Deprecated: Use
driveThemes/colorRgb
instead. -
#id ⇒ String
Deprecated: Use
driveThemes/id
instead.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TeamDriveTheme
constructor
A new instance of TeamDriveTheme.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TeamDriveTheme
Returns a new instance of TeamDriveTheme.
207 208 209 |
# File 'lib/google/apis/drive_v3/classes.rb', line 207 def initialize(**args) update!(**args) end |
Instance Attribute Details
#background_image_link ⇒ String
Deprecated: Use driveThemes/backgroundImageLink
instead.
Corresponds to the JSON property backgroundImageLink
195 196 197 |
# File 'lib/google/apis/drive_v3/classes.rb', line 195 def background_image_link @background_image_link end |
#color_rgb ⇒ String
Deprecated: Use driveThemes/colorRgb
instead.
Corresponds to the JSON property colorRgb
200 201 202 |
# File 'lib/google/apis/drive_v3/classes.rb', line 200 def color_rgb @color_rgb end |
#id ⇒ String
Deprecated: Use driveThemes/id
instead.
Corresponds to the JSON property id
205 206 207 |
# File 'lib/google/apis/drive_v3/classes.rb', line 205 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
212 213 214 215 216 |
# File 'lib/google/apis/drive_v3/classes.rb', line 212 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 |