vk-io
    Preparing search index...

    Interface FriendsGetMutualParams

    interface FriendsGetMutualParams {
        count?: number;
        offset?: number;
        order?: string;
        source_uid?: number;
        target_uid?: number;
        target_uids?: number | number[];
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    count?: number

    Number of mutual friends to return.

    offset?: number

    Offset needed to return a specific subset of mutual friends.

    order?: string

    Sort order: 'random' - random order

    source_uid?: number

    ID of the user whose friends will be checked against the friends of the user specified in 'target_uid'.

    target_uid?: number

    ID of the user whose friends will be checked against the friends of the user specified in 'source_uid'.

    target_uids?: number | number[]