google_api_sheets v0.2.0 GoogleApi.Sheets.V4.Model.UpdateBordersRequest View Source

Updates the borders of a range. If a field is not set in the request, that means the border remains as-is. For example, with two subsequent UpdateBordersRequest: 1. range: A1:A5 `{ top: RED, bottom: WHITE }` 2. range: A1:A5 `{ left: BLUE }` That would result in A1:A5 having a borders of `{ top: RED, bottom: WHITE, left: BLUE }`. If you want to clear a border, explicitly set the style to NONE.

Attributes

  • bottom (Border): The border to put at the bottom of the range. Defaults to: null.
  • innerHorizontal (Border): The horizontal border to put within the range. Defaults to: null.
  • innerVertical (Border): The vertical border to put within the range. Defaults to: null.
  • left (Border): The border to put at the left of the range. Defaults to: null.
  • range (GridRange): The range whose borders should be updated. Defaults to: null.
  • right (Border): The border to put at the right of the range. Defaults to: null.
  • top (Border): The border to put at the top of the range. Defaults to: null.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields

Link to this section Types

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.