You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`requests = [
Google::Apis::DocsV1::Request.new(
insert_table: {
table: table, (Its not working, is it the right syntax?)
end_of_segment_location: {
segment_id: ''
}
}
)
]
request = Google::Apis::DocsV1::Request.new(
insert_table: {
rows: 3, # Number of rows in the table
columns: 4, # Number of columns in the table
end_of_segment_location: {
segment_id: "" # Segment ID if applicable
}
}
)
I tried the above code as well but instead of copying the existing table, it creates a new one with broader width and no data present`