Executing Meta-Data JSON Generation
generation.generateMetaDataJson(
Object data, // the parsed JSON data response received from the serializer
Fn successCallback, // callback to be executed on successful generation
Fn errorCallback, // callback to be executed on generation error
);generation.generateMetaDataJson(
data,
function function (mdjPath, targetFileName, targetFolderPath, targetFilePath) {
...your logic to run on success...
},
function (error) {
...your logic to run on error...
}
);Last updated