Interface GroupsTagBindParams

interface GroupsTagBindParams {
    act: "bind" | "unbind";
    group_id: number;
    tag_id: number;
    user_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

act: "bind" | "unbind"

Describe the action

group_id: number
tag_id: number
user_id: number

Generated using TypeDoc