Class DryRunPerRecipientDetails

java.lang.Object
com.sinch.sdk.domains.sms.models.DryRunPerRecipientDetails

public class DryRunPerRecipientDetails extends Object
Details related to a dryRun recipient
Since:
1.0
  • Constructor Details

    • DryRunPerRecipientDetails

      @Deprecated public DryRunPerRecipientDetails(String recipient, String messagePart, String body, String encoding)
      Deprecated.
      Due to unused messagePart field, prefer the numberOfParts version usage.

      This constructor will be removed in a next major release

    • DryRunPerRecipientDetails

      public DryRunPerRecipientDetails(String recipient, Integer numberOfParts, String body, String encoding)
  • Method Details

    • getRecipient

      public String getRecipient()
      Get recipient
      Returns:
      recipient
    • getMessagePart

      @Deprecated public String getMessagePart()
      Deprecated.
      Due to unused messagePart field, prefer the getNumberOfParts() usage.

      This function will be removed in a next major release

    • getNumberOfParts

      public Integer getNumberOfParts()
      Get number of parts
      Returns:
      number of parts
    • getBody

      public String getBody()
      Get body
      Returns:
      body
    • getEncoding

      public String getEncoding()
      Get encoding
      Returns:
      encoding
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • builder

      public static DryRunPerRecipientDetails.Builder builder()