Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 2.34 KB

MediaAttachment.md

File metadata and controls

42 lines (28 loc) · 2.34 KB

FlatApi.MediaAttachment

Properties

Name Type Description Notes
type String The type of the assignment resolved: * `rich`, `photo`, `video` are attachment types that are automatically resolved from a `link` attachment. * A `flat` attachment is a score document where the unique identifier will be specified in the `score` property. Its sharing mode will be provided in the `sharingMode` property. [optional]
score String An unique Flat score identifier [optional]
revision String An unique revision identifier of a score [optional]
correct Boolean If the attachment is an exercise question, this state will describe if it is correct or not.For exercise assignments only. [optional]
sharingMode MediaScoreSharingMode [optional]
title String The resolved title of the attachment [optional]
description String The resolved description of the attachment [optional]
html String If the attachment type is `rich` or `video`, the HTML code of the media to display [optional]
htmlWidth String If the `html` is available, the width of the widget [optional]
htmlHeight String If the `html` is available, the height of the widget [optional]
url String The url of the attachment [optional]
thumbnailUrl String If the attachment type is `rich`, `video`, `photo` or `link`, a displayable thumbnail for this attachment [optional]
thumbnailWidth String If the `thumbnailUrl` is available, the width of the thumbnail [optional]
thumbnailHeight String If the `thumbnailUrl` is available, the width of the thumbnail [optional]
authorName String The resolved author name of the attachment [optional]
authorUrl String The resolved author url of the attachment [optional]

Enum: TypeEnum

  • rich (value: "rich")

  • photo (value: "photo")

  • video (value: "video")

  • link (value: "link")

  • flat (value: "flat")

  • exercise (value: "exercise")