Package io.moov.sdk.models.components
Class SentReceipt
- java.lang.Object
-
- io.moov.sdk.models.components.SentReceipt
-
public class SentReceipt extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSentReceipt.Builder
-
Constructor Summary
Constructors Constructor Description SentReceipt(java.lang.String receiptID, java.lang.String idempotencyKey, java.time.OffsetDateTime sentOn)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SentReceipt.Builderbuilder()booleanequals(java.lang.Object o)inthashCode()java.lang.StringidempotencyKey()The idempotency key used when creating the receipt.java.lang.StringreceiptID()Unique identifier for the receipt.java.time.OffsetDateTimesentOn()When the receipt was sent.java.lang.StringtoString()SentReceiptwithIdempotencyKey(java.lang.String idempotencyKey)The idempotency key used when creating the receipt.SentReceiptwithReceiptID(java.lang.String receiptID)Unique identifier for the receipt.SentReceiptwithSentOn(java.time.OffsetDateTime sentOn)When the receipt was sent.
-
-
-
Method Detail
-
receiptID
public java.lang.String receiptID()
Unique identifier for the receipt.
-
idempotencyKey
public java.lang.String idempotencyKey()
The idempotency key used when creating the receipt.
-
sentOn
public java.time.OffsetDateTime sentOn()
When the receipt was sent.
-
builder
public static SentReceipt.Builder builder()
-
withReceiptID
public SentReceipt withReceiptID(java.lang.String receiptID)
Unique identifier for the receipt.
-
withIdempotencyKey
public SentReceipt withIdempotencyKey(java.lang.String idempotencyKey)
The idempotency key used when creating the receipt.
-
withSentOn
public SentReceipt withSentOn(java.time.OffsetDateTime sentOn)
When the receipt was sent.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-