When we upload files to gdrive and set one of the properties OriginalSendt with key MDP_923ad869_0010, the file when viewed in metadrive has the metadata property set as seen in the attached screenshot.
But when we use the filter and search for the original date the file doesn't show up.
Is there a different way to the set metadata properties?
I have the code snippet that sets the properties.
var fileMetaData = {
'name': model.meta.originalfilename.S,
'parents': [model.docSubFolderGuid],
'properties': {
'MDP_923ad869_0010': model.meta.created.S, //Key: Originalemailsentdt
'MDP_923ad869_0011': model.meta.originalfilename.S, //Key:OriginalFileName
'MDP_923ad869_0002':'Added file from tpco.documents lambda', ////Key:Notes
'MDP_923ad869_0003': 'Sucess', //Key:DocumentStatus
'MDP_923ad869_0001': 'File uploded from sender email address: ' + model.meta.senderemailaddress.S //Key:Description
}
};
Thanks