Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 815 Bytes

ScoreSummary.md

File metadata and controls

28 lines (22 loc) · 815 Bytes

FlatApi::ScoreSummary

Properties

Name Type Description Notes
id String The unique identifier of the score
sharing_key String The private sharing key of the score (available when the `privacy` mode is set to `privateLink`) [optional]
title String The title of the score
privacy ScorePrivacy [default to 'private']
user UserPublic
html_url String The url where the score can be viewed in a web browser

Example

require 'flat_api'

instance = FlatApi::ScoreSummary.new(
  id: null,
  sharing_key: null,
  title: null,
  privacy: null,
  user: null,
  html_url: null
)