Interface GetDeliverabilityTestReportResponse.Builder

    • Method Detail

      • deliverabilityTestReport

        GetDeliverabilityTestReportResponse.Builder deliverabilityTestReport​(DeliverabilityTestReport deliverabilityTestReport)

        An object that contains the results of the predictive inbox placement test.

        Parameters:
        deliverabilityTestReport - An object that contains the results of the predictive inbox placement test.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • overallPlacement

        GetDeliverabilityTestReportResponse.Builder overallPlacement​(PlacementStatistics overallPlacement)

        An object that specifies how many test messages that were sent during the predictive inbox placement test were delivered to recipients' inboxes, how many were sent to recipients' spam folders, and how many weren't delivered.

        Parameters:
        overallPlacement - An object that specifies how many test messages that were sent during the predictive inbox placement test were delivered to recipients' inboxes, how many were sent to recipients' spam folders, and how many weren't delivered.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • ispPlacements

        GetDeliverabilityTestReportResponse.Builder ispPlacements​(Collection<IspPlacement> ispPlacements)

        An object that describes how the test email was handled by several email providers, including Gmail, Hotmail, Yahoo, AOL, and others.

        Parameters:
        ispPlacements - An object that describes how the test email was handled by several email providers, including Gmail, Hotmail, Yahoo, AOL, and others.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • ispPlacements

        GetDeliverabilityTestReportResponse.Builder ispPlacements​(IspPlacement... ispPlacements)

        An object that describes how the test email was handled by several email providers, including Gmail, Hotmail, Yahoo, AOL, and others.

        Parameters:
        ispPlacements - An object that describes how the test email was handled by several email providers, including Gmail, Hotmail, Yahoo, AOL, and others.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • message

        GetDeliverabilityTestReportResponse.Builder message​(String message)

        An object that contains the message that you sent when you performed this predictive inbox placement test.

        Parameters:
        message - An object that contains the message that you sent when you performed this predictive inbox placement test.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        GetDeliverabilityTestReportResponse.Builder tags​(Collection<Tag> tags)

        An array of objects that define the tags (keys and values) that are associated with the predictive inbox placement test.

        Parameters:
        tags - An array of objects that define the tags (keys and values) that are associated with the predictive inbox placement test.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        GetDeliverabilityTestReportResponse.Builder tags​(Tag... tags)

        An array of objects that define the tags (keys and values) that are associated with the predictive inbox placement test.

        Parameters:
        tags - An array of objects that define the tags (keys and values) that are associated with the predictive inbox placement test.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        GetDeliverabilityTestReportResponse.Builder tags​(Consumer<Tag.Builder>... tags)

        An array of objects that define the tags (keys and values) that are associated with the predictive inbox placement test.

        This is a convenience method that creates an instance of the Tag.Builder avoiding the need to create one manually via Tag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)