Interface GroupsLinksItem

interface GroupsLinksItem {
    desc: string;
    id: number;
    name: string;
    photo_100: string;
    photo_50: string;
    url: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

desc: string

Link description

id: number

Link ID

name: string

Link title

photo_100: string

URL of square image of the link with 100 pixels in width

photo_50: string

URL of square image of the link with 50 pixels in width

url: string

Link URL

Generated using TypeDoc