Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 657 Bytes

ScoreTrackUpdate.md

File metadata and controls

24 lines (18 loc) · 657 Bytes

FlatApi::ScoreTrackUpdate

Properties

Name Type Description Notes
title String Title of the track [optional]
default Boolean True if the track should be used as default audio source [optional]
state ScoreTrackState [optional][default to 'draft']
synchronization_points Array<ScoreTrackPoint> [optional]

Example

require 'flat_api'

instance = FlatApi::ScoreTrackUpdate.new(
  title: null,
  default: null,
  state: null,
  synchronization_points: null
)