Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

All dynamic playlist entities are structured as follows:

entity:

  • [int] Id: A unique identifier for the dynamic playlist instance. This value is generated by the server when the dynamic playlist is created.
  • [string] Name:  The name of the dynamic playlist

  • [string] PhysicalPath: The location of the feed XML file in the server directory

  • [long] FileSize: The size of the feed XML file (in bytes)

  • [string] FileHash: The hash algorithm and the value that results from performing the hash algorithm on the file. The string is formatted as "{algorithm}:{value}" (e.g. "SHA1:6DB465879088280AAC52DC22B07ED0AD493A99D4")

  • [DateTime] CreationDate: A UTC timestamp indicating when the dynamic playlist was created on BSN.cloud. See Custom Data Types for more information on this data type.

  • [DateTime] LastModifiedDate: A UTC timestamp indicating when the dynamic playlist was last modified on BSN.cloud. See Custom Data Types for more information on this data type.

  • [bool] SupportsAudio A flag indicating whether the dynamic playlist supports audio files

  • [bool] SupportsVideo: A flag indicating whether the dynamic playlist supports video files

  • [bool] SupportsImages: A flag indicating whether the dynamic playlist supports image files

  • [DynamicPlaylistContent[]] Content: An array of content object instances representing content files in the dynamic playlist: 

    • [int] ContentId

    • [string] FileName

    • [TimeSpan] DisplayDuration

    • [DateTime?] ValidityStartDate

    • [DateTime?] ValidityEndDate

  • [PresentationInfo[]] Presentations: An array of presentation object instances representing presentations that use the dynamic playlist:

    • [int] Id:  A unique identifier for the file. 
    • [string] Name: The filename
    • [Uri] Link:  The path to the file URI
  • [List<Permission>] Permissions: A list of permission object instances representing permissions rules assigned to the dynamic playlist instance







  • No labels