Skip to content

Latest commit

History

History
44 lines (38 loc) 路 1.87 KB

Collection.md

File metadata and controls

44 lines (38 loc) 路 1.87 KB

FlatApi::Collection

Properties

Name Type Description Notes
id String Unique identifier of the collection [optional]
title String The title of the collection [optional]
html_url String The url where the collection can be viewed in a web browser [optional]
type CollectionType [optional]
privacy CollectionPrivacy [optional]
sharing_key String The private sharing key of the collection (available when the `privacy` mode is set to `privateLink`) [optional]
app CollectionApp [optional]
creation_date Time The date when the collection was created [optional]
user UserPublicSummary [optional]
organization String If the score has been created in an organization, the identifier of this organization. [optional]
rights ResourceRights [optional]
collaborators Array<ResourceCollaborator> The list of the collaborators of the collection [optional]
capabilities CollectionCapabilities
collections Array<String> The List of parent collections, which includes all the collections this score is included. Please note that you might not have access to all of them. [optional]

Example

require 'flat_api'

instance = FlatApi::Collection.new(
  id: null,
  title: null,
  html_url: null,
  type: null,
  privacy: null,
  sharing_key: null,
  app: null,
  creation_date: null,
  user: null,
  organization: null,
  rights: null,
  collaborators: null,
  capabilities: null,
  collections: null
)