View Source GoogleApi.Sheets.V4.Model.UpdateBordersRequest (google_api_sheets v0.34.0)

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 (type: GoogleApi.Sheets.V4.Model.Border.t, default: nil) - The border to put at the bottom of the range.
  • innerHorizontal (type: GoogleApi.Sheets.V4.Model.Border.t, default: nil) - The horizontal border to put within the range.
  • innerVertical (type: GoogleApi.Sheets.V4.Model.Border.t, default: nil) - The vertical border to put within the range.
  • left (type: GoogleApi.Sheets.V4.Model.Border.t, default: nil) - The border to put at the left of the range.
  • range (type: GoogleApi.Sheets.V4.Model.GridRange.t, default: nil) - The range whose borders should be updated.
  • right (type: GoogleApi.Sheets.V4.Model.Border.t, default: nil) - The border to put at the right of the range.
  • top (type: GoogleApi.Sheets.V4.Model.Border.t, default: nil) - The border to put at the top of the range.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.Sheets.V4.Model.UpdateBordersRequest{
  bottom: GoogleApi.Sheets.V4.Model.Border.t() | nil,
  innerHorizontal: GoogleApi.Sheets.V4.Model.Border.t() | nil,
  innerVertical: GoogleApi.Sheets.V4.Model.Border.t() | nil,
  left: GoogleApi.Sheets.V4.Model.Border.t() | nil,
  range: GoogleApi.Sheets.V4.Model.GridRange.t() | nil,
  right: GoogleApi.Sheets.V4.Model.Border.t() | nil,
  top: GoogleApi.Sheets.V4.Model.Border.t() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.