StringOrInt

@Serializable(with = StringOrIntSerializer::class)
sealed class StringOrInt

Discriminated union type for a String or Int for use in Product.customProperties.

Holds a String or an Int, but not both.

Inheritors

Types

Link copied to clipboard
class IntWrapper(val int: Int) : StringOrInt

A wrapper around Int.

Link copied to clipboard
class StringWrapper(val string: String) : StringOrInt

A wrapper around String.