Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add standard and maxres in Thumbnails.VideoList #96

Merged
merged 1 commit into from Jan 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions YoutubeKit/API/Models/Thumbnail.swift
Expand Up @@ -34,14 +34,18 @@ extension Thumbnails {

extension Thumbnails {
public struct VideoList: Codable {
public let high: Default
public let `default`: Default
public let medium: Default
public let high: Default
public let standard: Default?
public let maxres: Default?

public enum CodingKeys: String, CodingKey {
case high
case `default` = "default"
case medium
case high
case standard
case maxres
}
}
}
Expand Down