interface CommentAttributes {
    body: string;
    conversation: ConversationElement[];
    createdBy: null | number;
    createdOn: null | number;
    endDate: null | string;
    geoJSONGeometry: CommentGeoJSON;
    id: string;
    isFollowing: boolean;
    lockRank: UserRank;
    oldId: string;
    permissions: number;
    subject: string;
    suggestionPermissions?: number;
    updatedBy: null | number;
    updatedOn: null | number;
}

Hierarchy (View Summary)

Properties

body: string
conversation: ConversationElement[]
createdBy: null | number
createdOn: null | number
endDate: null | string
geoJSONGeometry: CommentGeoJSON
id: string
isFollowing: boolean
lockRank: UserRank
oldId: string
permissions: number
subject: string
suggestionPermissions?: number
updatedBy: null | number
updatedOn: null | number