Viraj Shinde
07/13/2020, 5:07 PM/**
* @NApiVersion 2.0
* @NModuleScope Public
*/
define(['N/record'], function (record) {
"use strict";
return {
service: function (ctx) {
log.debug('in 2.0 Service', JSON.stringify(ctx));
log.debug('ctx', JSON.stringify(ctx));
ctx.response.write(JSON.stringify({message: 'Hello SS2 World!'}));
}
};
});