# [Ride v5] Reissue
⚠️ This is the documentation for the Standard library version 5. We recommend to use version 6. Go to version 6
Reissue
is a structure that sets the parameters of the token reissue. The token reissue is performed only if the structure is included in the callable function result.
The token reissue is only available for an asset that is issued by a dApp account.
If the token is a smart asset, the asset script verifies the Reissue
action as if it were ReissueTransaction with the fee of 0 and the version of 0. If the asset script denies the action, then the transaction that invoked the dApp script is either denied or saved on the blockchain as failed, see the Transaction Validation.
# Constructor
Reissue(assetId: ByteVector, quantity: Int, isReissuable: Boolean)
# Fields
# | Name | Data type | Description |
---|---|---|---|
1 | assetId | ByteVector | ID of the token to reissue |
2 | quantity | Int | Amount of the token |
3 | isReissuable | Boolean | Reissue ability flag |