# Pastebin eUIWI2t0 class PlaylistRecording(BaseModel): """A recording that is part of a playlist""" # Internal id of the playlist id: int # What playlist this recording is a part of playlist_id: int # The position of this item in the playlist position: int # The item mbid: uuid.UUID # Who added this item to the playlist added_by_id: int # When the item was added created: datetime.datetime artist_credit: str artist_mbids: List[uuid.UUID] title: str # What release would this be if the recording is of more than one? release_mbid: Optional[uuid.UUID] release_name: Optional[str] release_track_number: Optional[int] # exists in xspf, probably not needed? duration_ms: Optional[int] image: Optional[str] # who looks this up on CAA? # Computed added_by: str