Trakteer.js
    Preparing search index...

    Interface transactionHistory

    Transaction History

    interface transactionHistory {
        status: "error" | "success";
        status_code: number;
        result: {
            data: {
                creator_name: string;
                support_message: string;
                quantity: number;
                amount: number;
                unit_name: string;
                status: string;
                updated_at: string;
                payment_method: string;
                order_id: string;
            }[];
            meta: Meta;
        };
        message: string;
    }
    Index

    Properties

    status: "error" | "success"

    Status

    status_code: number

    Status code

    result: {
        data: {
            creator_name: string;
            support_message: string;
            quantity: number;
            amount: number;
            unit_name: string;
            status: string;
            updated_at: string;
            payment_method: string;
            order_id: string;
        }[];
        meta: Meta;
    }

    Result

    Type Declaration

    • data: {
          creator_name: string;
          support_message: string;
          quantity: number;
          amount: number;
          unit_name: string;
          status: string;
          updated_at: string;
          payment_method: string;
          order_id: string;
      }[]

      Result data

    • meta: Meta
    message: string

    Message