Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 950 Bytes

ScoreFork.md

File metadata and controls

22 lines (16 loc) · 950 Bytes

FlatApi::ScoreFork

Properties

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]

Example

require 'flat_api'

instance = FlatApi::ScoreFork.new(
  collection: null,
  google_drive_disabled: null,
  keep_original_title: null
)