Interface NewsfeedSaveListParams

interface NewsfeedSaveListParams {
    list_id?: number;
    no_reposts?: number | boolean;
    source_ids?: number | number[];
    title: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

list_id?: number

numeric list identifier (if not sent, will be set automatically).

no_reposts?: number | boolean

reposts display on and off ('1' is for off).

source_ids?: number | number[]
title: string

list name.

Generated using TypeDoc