Name |
Type |
Description |
Notes |
collection |
String |
Unique identifier of a collection where the score will be copied. If no collection identifier is provided, the score will be stored in the `root` directory. If null is provided, the score won't be added to any collections |
[optional][default to 'root'] |
google_drive_disabled |
Boolean |
If set to `true`, the API won't create the score on Google Drive |
[optional][default to false] |
keep_original_title |
Boolean |
Option to keep the original title of the score (i.e. don't prepend it with "Copy of ", or add the student name in assignment usage). |
[optional] |
require 'flat_api'
instance = FlatApi::ScoreFork.new(
collection: null,
google_drive_disabled: null,
keep_original_title: null
)