tech.carpentum.sdk.payment.internal.api.CommaSeparatedCodes.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-client-v2 Show documentation
Show all versions of payment-client-v2 Show documentation
Carpentum Payment system Java SDK
The newest version!
package tech.carpentum.sdk.payment.internal.api
internal object CommaSeparatedCodes {
fun of(vararg codes: String): Set? {
return when (codes.isNotEmpty()) {
true -> codes.toSet()
false -> null
}
}
fun format(codes: Set?): String? {
return codes?.joinToString(separator = ",")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy