@sumup/sdk
    Preparing search index...

    Type Alias CreateReaderCheckoutAmount

    Amount of the transaction. The amount is represented as an integer value altogether with the currency and the minor unit. For example, EUR 1.00 is represented as value 100 with minor unit of 2.

    type CreateReaderCheckoutAmount = {
        currency: string;
        minor_unit: number;
        value: number;
    }
    Index

    Properties

    currency: string

    Currency ISO 4217 code

    minor_unit: number

    The minor units of the currency. It represents the number of decimals of the currency. For the currencies CLP, COP and HUF, the minor unit is 0.

    value: number

    Total amount of the transaction. It must be a positive integer.