GoogleApi.Docs.V1.Model.TableRow (google_api_docs v0.18.0)
View SourceThe contents and style of a row in a Table.
Attributes
-
endIndex
(type:integer()
, default:nil
) - The zero-based end index of this row, exclusive, in UTF-16 code units. -
startIndex
(type:integer()
, default:nil
) - The zero-based start index of this row, in UTF-16 code units. -
suggestedDeletionIds
(type:list(String.t)
, default:nil
) - The suggested deletion IDs. If empty, then there are no suggested deletions of this content. -
suggestedInsertionIds
(type:list(String.t)
, default:nil
) - The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion. -
suggestedTableRowStyleChanges
(type:%{optional(String.t) => GoogleApi.Docs.V1.Model.SuggestedTableRowStyle.t}
, default:nil
) - The suggested style changes to this row, keyed by suggestion ID. -
tableCells
(type:list(GoogleApi.Docs.V1.Model.TableCell.t)
, default:nil
) - The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table. -
tableRowStyle
(type:GoogleApi.Docs.V1.Model.TableRowStyle.t
, default:nil
) - The style of the table row.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Docs.V1.Model.TableRow{ endIndex: integer() | nil, startIndex: integer() | nil, suggestedDeletionIds: [String.t()] | nil, suggestedInsertionIds: [String.t()] | nil, suggestedTableRowStyleChanges: %{ optional(String.t()) => GoogleApi.Docs.V1.Model.SuggestedTableRowStyle.t() } | nil, tableCells: [GoogleApi.Docs.V1.Model.TableCell.t()] | nil, tableRowStyle: GoogleApi.Docs.V1.Model.TableRowStyle.t() | nil }