Skip to content

Instantly share code, notes, and snippets.

@Daniel-Jacob
Created March 11, 2022 14:59
Show Gist options
  • Save Daniel-Jacob/50f035c9304a3ce39a56c70885f9cbfe to your computer and use it in GitHub Desktop.
Save Daniel-Jacob/50f035c9304a3ce39a56c70885f9cbfe to your computer and use it in GitHub Desktop.
@JvmInline
value class PaymentMethod(val paymentMethod: String)
@JvmInline
value class PaymentId(val paymentId: UUID)
data class Payment(
val paymentId: PaymentId,
val paymentMethod: PaymentMethod
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment