Interface GroupsCallbackServer

interface GroupsCallbackServer {
    creator_id: number;
    id: number;
    secret_key: string;
    status: "failed" | "unconfigured" | "ok" | "wait";
    title: string;
    url: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

creator_id: number
id: number
secret_key: string
status: "failed" | "unconfigured" | "ok" | "wait"
title: string
url: string

Generated using TypeDoc