GetTimeUTC
Returns the timestamp of the comment reply creation in UTC format.
Syntax
expression.GetTimeUTC();
expression - A variable that represents a ApiCommentReply class.
Parameters
This method doesn't have any parameters.
Returns
Number
Example
Read the UTC creation time recorded on a comment reply in a spreadsheet.
// How do I get the universal timestamp for when a reply was posted to a comment in a spreadsheet?
// Retrieve the timezone-neutral posting time of a reply within a comment thread in a spreadsheet.
let worksheet = Api.GetActiveSheet();
worksheet.GetRange("A1").SetValue("1");
let range = worksheet.GetRange("A1");
let comment = range.AddComment("This is just a number.");
comment.AddReply("Reply 1", "John Smith", "uid-1");
let reply = comment.GetReply();
worksheet.GetRange("A3").SetValue("Comment's reply timestamp UTC: ");
worksheet.GetRange("B3").SetValue(reply.GetTimeUTC());