package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Drive.BackgroundImageFileSource

Sourcetype t = {
  1. id : string;
    (*

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

    *)
  2. xCoordinate : 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. 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.

    *)
  3. yCoordinate : 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. 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.

    *)
  4. width : float;
    (*

    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.

    *)
}
Sourceval id : (t, string) GapiLens.t
Sourceval xCoordinate : (t, float) GapiLens.t
Sourceval yCoordinate : (t, float) GapiLens.t
Sourceval width : (t, float) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list