@Viacheslav Petriaiev can you add that as a code snippet instead of a message? It would look something like this:
Copy code
sealed class Payment {
// shared behaviors of all payments
}
data class InternationalPayment(val countryCode: String) : Payment()
data class OtherPaymentType(val other: String) : Payment()