MediaListItem

public struct MediaListItem : Codable

Description of a single cell in a MediaList.

  • Title to display on the cell.

    Declaration

    Swift

    public let title: String
  • Subtitle to display below title. Optional.

    Declaration

    Swift

    public let subTitle: String?
  • Caption to display below subtitle. Optional.

    Declaration

    Swift

    public let caption: String?
  • Link to open if item in table is tapped.

    Declaration

    Swift

    public let link: URL?