/**
 *
 "content": {
            "type": 1,
            "searchableContent": "1234",
            "pushContent": "",
            "content": "",
            "binaryContent": "",
            "localContent": "",
            "mediaType": 0,
            "remoteMediaUrl": "",
            "localMediaPath": "",
            "mentionedType": 0,
            "mentionedTargets": [ ]
        },
 */
export default class MessagePayload {
    type: any;
    searchableContent: any;
    pushContent: any;
    pushData: any;
    content: any;
    binaryContent: any;
    localContent: any;
    mediaType: any;
    remoteMediaUrl: any;
    localMediaPath: any;
    mentionedType: number;
    mentionedTargets: any[];
    extra: any;
    notLoaded: number;
}
