tech.pylons.lib.constants.ReservedKeys.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libpylons Show documentation
Show all versions of libpylons Show documentation
Library providing common functionality for interacting with the Pylons ecosystem
The newest version!
package tech.pylons.wallet.libpylons.constants
class ReservedKeys {
companion object {
const val prefix = "@P__"
const val wcAction = "${prefix}ACTION"
const val itemName = "${prefix}ITEM_NAME"
const val profileName = "${prefix}PROFILE_NAME"
const val statusBlock = "${prefix}STATUS_BLOCK"
}
}