AniLink - v1.29.2
    Preparing search index...

    Distribution is an interface representing a distribution. It includes the status and amount each having their own properties.

    interface Distribution {
        amount: number;
        status: string;
    }
    Index
    amount: number

    amount is a number representing the amount of the distribution.

    status: string

    status is a string representing the status of the distribution.