StreamMarkerGroup

@Serializable
data class StreamMarkerGroup(val userId: String, val userName: String, val userLogin: String, val videos: List<StreamMarkerVideo> = emptyList())

Represents a group of stream markers for a user, as returned by Get Stream Markers.

See also

Constructors

Link copied to clipboard
constructor(userId: String, userName: String, userLogin: String, videos: List<StreamMarkerVideo> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "user_id")
val userId: String

the ID of the user that created the marker.

Link copied to clipboard
@SerialName(value = "user_login")
val userLogin: String

the user's login name.

Link copied to clipboard
@SerialName(value = "user_name")
val userName: String

the user's display name.

Link copied to clipboard

a list of videos that contain markers. The list contains a single video.