Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.58 KB

ScoreTrack.md

File metadata and controls

42 lines (36 loc) · 1.58 KB

FlatApi::ScoreTrack

Properties

Name Type Description Notes
id String The unique identifier of the score track
title String Title of the track [optional]
score String The unique identifier of the score
creator String The unique identifier of the track creator
creation_date Time The creation date of the track
modification_date Time The modification date of the track
default Boolean True if the track should be used as default audio source
state ScoreTrackState [default to 'draft']
type ScoreTrackType
purpose ScoreTrackPurpose [default to 'common']
url String The URL of the track [optional]
media_id String The unique identifier of the track when hosted on an external service. For example, if the url is `https://www.youtube.com/watch?v=dQw4w9WgXcQ`, `mediaId` will be `dQw4w9WgXcQ` [optional]
synchronization_points Array<ScoreTrackPoint> [optional]

Example

require 'flat_api'

instance = FlatApi::ScoreTrack.new(
  id: null,
  title: null,
  score: null,
  creator: null,
  creation_date: null,
  modification_date: null,
  default: null,
  state: null,
  type: null,
  purpose: null,
  url: null,
  media_id: null,
  synchronization_points: null
)