Interface Receipt.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Receipt.Builder,Receipt>,SdkBuilder<Receipt.Builder,Receipt>,SdkPojo
- Enclosing class:
- Receipt
public static interface Receipt.Builder extends SdkPojo, CopyableBuilder<Receipt.Builder,Receipt>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Receipt.BuilderdeliveredTimestamp(String deliveredTimestamp)The time when the message was delivered to the recipient.Receipt.BuilderreadTimestamp(String readTimestamp)The time when the message was read by the recipient.Receipt.BuilderrecipientParticipantId(String recipientParticipantId)The identifier of the recipient of the message.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
deliveredTimestamp
Receipt.Builder deliveredTimestamp(String deliveredTimestamp)
The time when the message was delivered to the recipient.
- Parameters:
deliveredTimestamp- The time when the message was delivered to the recipient.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readTimestamp
Receipt.Builder readTimestamp(String readTimestamp)
The time when the message was read by the recipient.
- Parameters:
readTimestamp- The time when the message was read by the recipient.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipientParticipantId
Receipt.Builder recipientParticipantId(String recipientParticipantId)
The identifier of the recipient of the message.
- Parameters:
recipientParticipantId- The identifier of the recipient of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-