Interface BugtrackerComment

interface BugtrackerComment {
    attachments: BugtrackerAttachment[];
    author_name: string;
    author_photo: string;
    bugreport_id: number;
    comment_id: number;
    created: number;
    edit_hash: string;
    from_id: number;
    is_hidden: number | boolean;
    is_unread: number | boolean;
    meta_text: string;
    remove_hash: string;
    text: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments: BugtrackerAttachment[]
author_name: string
author_photo: string
bugreport_id: number
comment_id: number
created: number
edit_hash: string
from_id: number
is_hidden: number | boolean
is_unread: number | boolean
meta_text: string
remove_hash: string
text: string

Generated using TypeDoc