Interface IList

The details of a single Twitter List.

interface IList {
    createdAt: string;
    createdBy: string;
    description?: string;
    id: string;
    memberCount: number;
    name: string;
    subscriberCount: number;
}

Implemented by

Properties

createdAt: string

The date and time of creation of the list, int UTC string format.

createdBy: string

The rest id of the user who created the list.

description?: string

The list description.

id: string

The rest id of the list.

memberCount: number

The number of memeber of the list.

name: string

The name of the list.

subscriberCount: number

The number of subscribers of the list.