SW Combine SDK
    Preparing search index...

    Interface CreditLogEntry

    interface CreditLogEntry {
        amount: number;
        attributes: { transaction_id: number };
        communication: string;
        receiver: { attributes?: { href?: string; uid: string }; value?: string };
        sender: { attributes?: { href?: string; uid: string }; value?: string };
        time: {
            days: number;
            hours: number;
            mins: number;
            secs: number;
            timestamp: string;
            years: number;
        };
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    amount: number
    attributes: { transaction_id: number }
    communication: string
    receiver: { attributes?: { href?: string; uid: string }; value?: string }
    sender: { attributes?: { href?: string; uid: string }; value?: string }
    time: {
        days: number;
        hours: number;
        mins: number;
        secs: number;
        timestamp: string;
        years: number;
    }