ResumePoint

data class ResumePoint(fullyPlayed: Boolean, resumePositionMs: Int)

Represents the user’s most recent position in the episode. Set if the supplied access token is a user token and has the scope SpotifyScope.USER_READ_PLAYBACK_POSITION.

Parameters

fullyPlayed

Whether or not the episode has been fully played by the user.

resumePositionMs

The user’s most recent position in the episode in milliseconds.

Constructors

ResumePoint
Link copied to clipboard
common
fun ResumePoint(fullyPlayed: Boolean, resumePositionMs: Int)
Whether or not the episode has been fully played by the user.

Functions

component1
Link copied to clipboard
common
operator fun component1(): Boolean
component2
Link copied to clipboard
common
operator fun component2(): Int
copy
Link copied to clipboard
common
fun copy(fullyPlayed: Boolean, resumePositionMs: Int): ResumePoint
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

fullyPlayed
Link copied to clipboard
common
val fullyPlayed: Boolean
Whether or not the episode has been fully played by the user.
resumePositionMs
Link copied to clipboard
common
val resumePositionMs: Int
The user’s most recent position in the episode in milliseconds.

Sources

(source)
Link copied to clipboard