google_api_sheets v0.0.2 GoogleApi.Sheets.V4.Model.CutPasteRequest View Source

Moves data from the source to the destination.

Attributes

  • destination (GridCoordinate): The top-left coordinate where the data should be pasted. Defaults to: null.
  • pasteType (String.t): What kind of data to paste. All the source data will be cut, regardless of what is pasted. Defaults to: null.

    • Enum - one of [PASTE_NORMAL, PASTE_VALUES, PASTE_FORMAT, PASTE_NO_BORDERS, PASTE_FORMULA, PASTE_DATA_VALIDATION, PASTE_CONDITIONAL_FORMATTING]
  • source (GridRange): The source data to cut. Defaults to: null.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %GoogleApi.Sheets.V4.Model.CutPasteRequest{
  destination: GoogleApi.Sheets.V4.Model.GridCoordinate.t(),
  pasteType: any(),
  source: GoogleApi.Sheets.V4.Model.GridRange.t()
}