我正在尝试将一行从一张纸移到另一张纸上,有人可以帮我吗?请在下面查看我的代码:
from smartsheet import sheets, models
source_sheet_id = 123456789 #int
destination_sheet_id = 987654321 #int
sheets.Sheets.move_rows(
source_sheet_id,
models.CopyOrMoveRowDirective({
'row_ids': [row_id],
'to': models.CopyOrMoveRowDestination({
'sheet_id': destination_sheet_id
})
})
)
先感谢您