MicrosoftTeamsUserIdentifierModel
public struct MicrosoftTeamsUserIdentifierModel : Codable
                A Microsoft Teams user.
- 
                  
                  
The Id of the Microsoft Teams user. If not anonymous, this is the AAD object Id of the user.
Declaration
Swift
public let userId: String - 
                  
                  
True if the Microsoft Teams user is anonymous. By default false if missing.
Declaration
Swift
public let isAnonymous: Bool? - 
                  
                  
The cloud that the Microsoft Teams user belongs to. By default ‘public’ if missing.
Declaration
Swift
public let cloud: CommunicationCloudEnvironmentModel? 
- 
                  
                  
Initialize a
MicrosoftTeamsUserIdentifierModelstructure.Declaration
Swift
public init( userId: String, isAnonymous: Bool? = nil, cloud: CommunicationCloudEnvironmentModel? = nil )Parameters
userIdThe Id of the Microsoft Teams user. If not anonymous, this is the AAD object Id of the user.
isAnonymousTrue if the Microsoft Teams user is anonymous. By default false if missing.
cloudThe cloud that the Microsoft Teams user belongs to. By default ‘public’ if missing.
 
- 
                  
                  
Initialize a
MicrosoftTeamsUserIdentifierModelstructure from decoderDeclaration
Swift
public init(from decoder: Decoder) throws - 
                  
                  
Encode a
MicrosoftTeamsUserIdentifierModelstructureDeclaration
Swift
public func encode(to encoder: Encoder) throws 
            View on GitHub
          
      MicrosoftTeamsUserIdentifierModel Structure Reference