31 lines
741 B
Swift
31 lines
741 B
Swift
//
|
|
// Copyright 2026 Element Creations Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
import MatrixRustSDK
|
|
|
|
enum CallIntent: Codable, CaseIterable {
|
|
case video, audio
|
|
}
|
|
|
|
extension CallIntent {
|
|
// periphery:ignore - Unused, but added to detect new cases when updating the SDK.
|
|
init(rustCallIntent: MatrixRustSDK.RtcCallIntent) {
|
|
switch rustCallIntent {
|
|
case .audio: self = .audio
|
|
case .video: self = .video
|
|
}
|
|
}
|
|
|
|
var rustCallIntent: MatrixRustSDK.RtcCallIntent {
|
|
switch self {
|
|
case .audio: .audio
|
|
case .video: .video
|
|
}
|
|
}
|
|
}
|