AzureCommunicationUI/sdk/AzureCommunicationUICalling/Sources/CallCompositeOptions/CallKitRemoteInfo.swift (9 lines of code) (raw):

// // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // import CallKit /// CXHandle and Display Name for the Remote participant while using callKit. public struct CallKitRemoteInfo { /// Display name of the remote participant public let displayName: String /// CXHandle of the remote participant, for call history public let handle: CXHandle /// Initialize a `CallKitRemoteInfo` /// - Parameters: /// - displayName: Display name of the remote participant /// - handle: CXHandle of the remote participant, for call history public init(displayName: String, handle: CXHandle) { self.displayName = displayName self.handle = handle } }