Struct google_drive3::TeamDriveBackgroundImageFile[][src]

pub struct TeamDriveBackgroundImageFile {
    pub width: Option<f32>,
    pub y_coordinate: Option<f32>,
    pub id: Option<String>,
    pub x_coordinate: Option<f32>,
}

An image file and cropping parameters from which a background image for this Team Drive is set. This is a write only field; it can only be set on drive.teamdrives.update requests that don't set themeId. When specified, all fields of the backgroundImageFile must be set.

This type is not used in any activity, and only used as part of another schema.

Fields

The width of the cropped image in the closed range of 0 to 1. This value represents 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.

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. This value represents 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.

The ID of an image file in Drive to use for the background image.

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. This value represents 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.

Trait Implementations

impl Default for TeamDriveBackgroundImageFile
[src]

Returns the "default value" for a type. Read more

impl Clone for TeamDriveBackgroundImageFile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TeamDriveBackgroundImageFile
[src]

Formats the value using the given formatter. Read more

impl NestedType for TeamDriveBackgroundImageFile
[src]

impl Part for TeamDriveBackgroundImageFile
[src]

Auto Trait Implementations