chore(ios): make DRMParams properties public (#4568)

This commit is contained in:
Kamil Moskała
2025-06-11 09:32:58 +02:00
committed by GitHub
parent 9f03cc5a09
commit 45fd250adf

View File

@@ -1,11 +1,11 @@
public struct DRMParams { public struct DRMParams {
let type: String? public let type: String?
let licenseServer: String? public let licenseServer: String?
let headers: [String: Any]? public let headers: [String: Any]?
let contentId: String? public let contentId: String?
let certificateUrl: String? public let certificateUrl: String?
let base64Certificate: Bool? public let base64Certificate: Bool?
let localSourceEncryptionKeyScheme: String? public let localSourceEncryptionKeyScheme: String?
let json: NSDictionary? let json: NSDictionary?