CommunicationUserIdentifierModel

public struct CommunicationUserIdentifierModel : Codable

A user that got created with an Azure Communication Services resource.

Properties

  • id

    The Id of the communication user.

    Declaration

    Swift

    public let id: String

Initializers

  • Initialize a CommunicationUserIdentifierModel structure.

    Declaration

    Swift

    public init(
        id: String
    )

    Parameters

    id

    The Id of the communication user.

Codable

  • Initialize a CommunicationUserIdentifierModel structure from decoder

    Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Encode a CommunicationUserIdentifierModel structure

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws