Class CommunicationIdentifierModel

java.lang.Object
com.azure.messaging.eventgrid.systemevents.CommunicationIdentifierModel
All Implemented Interfaces:
com.azure.json.JsonSerializable<CommunicationIdentifierModel>

public final class CommunicationIdentifierModel extends Object implements com.azure.json.JsonSerializable<CommunicationIdentifierModel>
Identifies a participant in Azure Communication services. A participant is, for example, a phone number or an Azure communication user. This model must be interpreted as a union: Apart from rawId, at most one further property may be set.
  • Method Details

    • getKind

      public CommunicationIdentifierKind getKind()
      Get the kind property: The identifier kind. Only required in responses.
      Returns:
      the kind value.
    • getRawId

      public String getRawId()
      Get the rawId property: Raw Id of the identifier. Optional in requests, required in responses.
      Returns:
      the rawId value.
    • getCommunicationUser

      public CommunicationUserIdentifierModel getCommunicationUser()
      Get the communicationUser property: The communication user.
      Returns:
      the communicationUser value.
    • getPhoneNumber

      public PhoneNumberIdentifierModel getPhoneNumber()
      Get the phoneNumber property: The phone number.
      Returns:
      the phoneNumber value.
    • getMicrosoftTeamsUser

      public MicrosoftTeamsUserIdentifierModel getMicrosoftTeamsUser()
      Get the microsoftTeamsUser property: The Microsoft Teams user.
      Returns:
      the microsoftTeamsUser value.
    • getMicrosoftTeamsApp

      public MicrosoftTeamsAppIdentifier getMicrosoftTeamsApp()
      Get the microsoftTeamsApp property: The Microsoft Teams application.
      Returns:
      the microsoftTeamsApp value.
    • toJson

      public com.azure.json.JsonWriter toJson(com.azure.json.JsonWriter jsonWriter) throws IOException
      Specified by:
      toJson in interface com.azure.json.JsonSerializable<CommunicationIdentifierModel>
      Throws:
      IOException
    • fromJson

      public static CommunicationIdentifierModel fromJson(com.azure.json.JsonReader jsonReader) throws IOException
      Reads an instance of CommunicationIdentifierModel from the JsonReader.
      Parameters:
      jsonReader - The JsonReader being read.
      Returns:
      An instance of CommunicationIdentifierModel if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
      Throws:
      IllegalStateException - If the deserialized JSON object was missing any required properties.
      IOException - If an error occurs while reading the CommunicationIdentifierModel.