Interface GroupsCreateParams

interface GroupsCreateParams {
    description?: string;
    public_category?: number;
    public_subcategory?: number;
    subtype?: 0 | 2 | 1 | 3 | 4;
    title: string;
    type?: "public" | "event" | "group";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

description?: string

Community description (ignored for 'type' = 'public').

public_category?: number

Category ID (for 'type' = 'public' only).

public_subcategory?: number

Public page subcategory ID.

subtype?: 0 | 2 | 1 | 3 | 4

Public page subtype. Possible values: *'1' - place or small business,, *'2' - company, organization or website,, *'3' - famous person or group of people,, *'4' - product or work of art.

title: string

Community title.

type?: "public" | "event" | "group"

Community type. Possible values: *'group' - group,, *'event' - event,, *'public' - public page

Generated using TypeDoc