We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f9e48f commit 8a0b0d7Copy full SHA for 8a0b0d7
Sources/MuxUploadSDK/PublicAPI/Options/UploadOptions.swift
@@ -187,6 +187,19 @@ public struct UploadOptions {
187
188
}
189
190
+extension UploadOptions.InputStandardization.MaximumResolution: CustomStringConvertible {
191
+ public var description: String {
192
+ switch self {
193
+ case .preset1280x720:
194
+ return "preset1280x720"
195
+ case .preset1920x1080:
196
+ return "preset1920x1080"
197
+ case .default:
198
+ return "default"
199
+ }
200
201
+}
202
+
203
extension UploadOptions: Codable { }
204
205
extension UploadOptions.EventTracking: Codable { }
0 commit comments