Class EmailChannelProperties

java.lang.Object
com.azure.resourcemanager.botservice.models.EmailChannelProperties
All Implemented Interfaces:
com.azure.json.JsonSerializable<EmailChannelProperties>

public final class EmailChannelProperties extends Object implements com.azure.json.JsonSerializable<EmailChannelProperties>
The parameters to provide for the Email channel.
  • Constructor Details

    • EmailChannelProperties

      public EmailChannelProperties()
      Creates an instance of EmailChannelProperties class.
  • Method Details

    • emailAddress

      public String emailAddress()
      Get the emailAddress property: The email address.
      Returns:
      the emailAddress value.
    • withEmailAddress

      public EmailChannelProperties withEmailAddress(String emailAddress)
      Set the emailAddress property: The email address.
      Parameters:
      emailAddress - the emailAddress value to set.
      Returns:
      the EmailChannelProperties object itself.
    • authMethod

      public EmailChannelAuthMethod authMethod()
      Get the authMethod property: Email channel auth method. 0 Password (Default); 1 Graph.
      Returns:
      the authMethod value.
    • withAuthMethod

      public EmailChannelProperties withAuthMethod(EmailChannelAuthMethod authMethod)
      Set the authMethod property: Email channel auth method. 0 Password (Default); 1 Graph.
      Parameters:
      authMethod - the authMethod value to set.
      Returns:
      the EmailChannelProperties object itself.
    • password

      public String password()
      Get the password property: The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
      Returns:
      the password value.
    • withPassword

      public EmailChannelProperties withPassword(String password)
      Set the password property: The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
      Parameters:
      password - the password value to set.
      Returns:
      the EmailChannelProperties object itself.
    • magicCode

      public String magicCode()
      Get the magicCode property: The magic code for setting up the modern authentication.
      Returns:
      the magicCode value.
    • withMagicCode

      public EmailChannelProperties withMagicCode(String magicCode)
      Set the magicCode property: The magic code for setting up the modern authentication.
      Parameters:
      magicCode - the magicCode value to set.
      Returns:
      the EmailChannelProperties object itself.
    • isEnabled

      public boolean isEnabled()
      Get the isEnabled property: Whether this channel is enabled for the bot.
      Returns:
      the isEnabled value.
    • withIsEnabled

      public EmailChannelProperties withIsEnabled(boolean isEnabled)
      Set the isEnabled property: Whether this channel is enabled for the bot.
      Parameters:
      isEnabled - the isEnabled value to set.
      Returns:
      the EmailChannelProperties object itself.
    • validate

      public void validate()
      Validates the instance.
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.
    • toJson

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

      public static EmailChannelProperties fromJson(com.azure.json.JsonReader jsonReader) throws IOException
      Reads an instance of EmailChannelProperties from the JsonReader.
      Parameters:
      jsonReader - The JsonReader being read.
      Returns:
      An instance of EmailChannelProperties 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 EmailChannelProperties.