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

com.github.kpavlov.jreactive8583.iso.MTI.kt Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
@file:JvmName("MTI")

package com.github.kpavlov.jreactive8583.iso

public object MTI {

    @JvmStatic
    public fun mtiValue(
        iso8583Version: ISO8583Version,
        messageClass: MessageClass,
        messageFunction: MessageFunction,
        messageOrigin: MessageOrigin
    ): Int = (
        iso8583Version.value +
            messageClass.value +
            messageFunction.value +
            messageOrigin.value
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy