interface PartialMessage {
    detail?: any;
    id?: string;
    location?: null | Partial<Location>;
    notes?: PartialNote[];
    pluginName?: string;
    text?: string;
}

Properties

detail?: any
id?: string
location?: null | Partial<Location>
notes?: PartialNote[]
pluginName?: string
text?: string