bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iGetBalanceByAddressSuccessResponse<T>

    interface iGetBalanceByAddressSuccessResponse<T extends NumberType> {
        _docId: string;
        _id?: string;
        autoApproveAllIncomingTransfers: boolean;
        autoApproveSelfInitiatedIncomingTransfers: boolean;
        autoApproveSelfInitiatedOutgoingTransfers: boolean;
        balances: iBalance<T>[];
        bitbadgesAddress: string;
        collectionId: string;
        incomingApprovals: iUserIncomingApprovalWithDetails<T>[];
        outgoingApprovals: iUserOutgoingApprovalWithDetails<T>[];
        tags?: string[];
        updateHistory: iUpdateHistory<T>[];
        userPermissions: iUserPermissionsWithDetails<T>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    _docId: string

    A unique stringified document ID

    _id?: string

    A unique document ID (Mongo DB ObjectID)

    autoApproveAllIncomingTransfers: boolean

    Whether the user's all incoming transfers are auto-approved. If not, they must be explicitly approved using the incoming approvals.

    autoApproveSelfInitiatedIncomingTransfers: boolean

    Whether the user's self-initiated incoming transfers are auto-approved. If not, they must be explicitly approved using the incoming approvals.

    autoApproveSelfInitiatedOutgoingTransfers: boolean

    Whether the user's self-initiated outgoing transfers are auto-approved. If not, they must be explicitly approved using the outgoing approvals.

    balances: iBalance<T>[]

    The user's balances.

    bitbadgesAddress: string

    The BitBadges address of the user

    collectionId: string

    The collection ID

    incomingApprovals: iUserIncomingApprovalWithDetails<T>[]

    The incoming approvals with details like metadata and address lists.

    outgoingApprovals: iUserOutgoingApprovalWithDetails<T>[]

    The outgoing approvals with details like metadata and address lists.

    tags?: string[]

    Optional tags for this balance

    updateHistory: iUpdateHistory<T>[]

    The update history of this balance

    userPermissions: iUserPermissionsWithDetails<T>

    The user permissions with details like metadata and address lists.