All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.tatum.model.request.UpdateCurrency.kt Maven / Gradle / Ivy

package io.tatum.model.request

import io.tatum.MergedCurrency
import java.math.BigDecimal

class UpdateCurrency(
    val name: String,
    val basePair: MergedCurrency?,
    val baseRate: BigDecimal?,
) {
    init {
        require(name.length in 1..30 && name.matches(VC_REGEX))
        if (baseRate != null) require(baseRate >= BigDecimal.ZERO)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy