Class: Google::Apis::DriveV3::TeamDrive::BackgroundImageFile
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::TeamDrive::BackgroundImageFile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/drive_v3/classes.rb,
generated/google/apis/drive_v3/representations.rb,
generated/google/apis/drive_v3/representations.rb
Overview
An image file and cropping parameters from which a background image for this Team Drive is set. This is a write only field that can only be set on a drive. teamdrives.update request that does not set themeId. When specified, all fields of the backgroundImageFile must be set.
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of an image file in Drive to use for the background image.
-
#width ⇒ Float
The width of the cropped image in the closed range of 0 to 1, which is the width of the cropped image divided by the width of the entire image.
-
#x_coordinate ⇒ Float
The X coordinate of the upper left corner of the cropping area in the background image.
-
#y_coordinate ⇒ Float
The Y coordinate of the upper left corner of the cropping area in the background image.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackgroundImageFile
constructor
A new instance of BackgroundImageFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BackgroundImageFile
Returns a new instance of BackgroundImageFile
1928 1929 1930 |
# File 'generated/google/apis/drive_v3/classes.rb', line 1928 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The ID of an image file in Drive to use for the background image.
Corresponds to the JSON property id
1902 1903 1904 |
# File 'generated/google/apis/drive_v3/classes.rb', line 1902 def id @id end |
#width ⇒ Float
The width of the cropped image in the closed range of 0 to 1, which is the
width of the cropped image divided by the width of the entire image. The
height is computed by applying a width to height aspect ratio of 80 to 9. The
resulting image must be at least 1280 pixels wide and 144 pixels high.
Corresponds to the JSON property width
1910 1911 1912 |
# File 'generated/google/apis/drive_v3/classes.rb', line 1910 def width @width end |
#x_coordinate ⇒ Float
The X coordinate of the upper left corner of the cropping area in the
background image. This is a value in the closed range of 0 to 1 which is the
horizontal distance from the left side of the entire image to the left side of
the cropping area divided by the width of the entire image.
Corresponds to the JSON property xCoordinate
1918 1919 1920 |
# File 'generated/google/apis/drive_v3/classes.rb', line 1918 def x_coordinate @x_coordinate end |
#y_coordinate ⇒ Float
The Y coordinate of the upper left corner of the cropping area in the
background image. This is a value in the closed range of 0 to 1 which is the
vertical distance from the top side of the entire image to the top side of the
cropping area divided by the height of the entire image.
Corresponds to the JSON property yCoordinate
1926 1927 1928 |
# File 'generated/google/apis/drive_v3/classes.rb', line 1926 def y_coordinate @y_coordinate end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1933 1934 1935 1936 1937 1938 |
# File 'generated/google/apis/drive_v3/classes.rb', line 1933 def update!(**args) @id = args[:id] if args.key?(:id) @width = args[:width] if args.key?(:width) @x_coordinate = args[:x_coordinate] if args.key?(:x_coordinate) @y_coordinate = args[:y_coordinate] if args.key?(:y_coordinate) end |