Class TimeStamp

Time Stamp

Represents a timestamp object which is can be added to a Variable Data .

Only available for Google Workspace add-ons that extend Google Workspace Studio.

Sample usage:

 const 
  
 timeStamp 
  
 = 
  
 AddOnsResponseService 
 . 
 newTimeStamp 
 () 
  
 . 
 setSeconds 
 ( 
 10086 
 ) 
  
 . 
 setNanos 
 ( 
 123 
 ); 

Methods

Method Return type Brief description
Time Stamp Sets the nanos of the timestamp, it represents the number of nanoseconds within the current second.
Time Stamp Sets the seconds of the timestamp, it represents the number of seconds since the Unix epoch(January 1, 1970, 00:00:00 UTC).

Detailed documentation

set Nanos(nanos)

Sets the nanos of the timestamp, it represents the number of nanoseconds within the current second.

Parameters

Name Type Description
nanos
Integer The nanos of the timestamp.

Return

Time Stamp — This time stamp object, for chaining.


set Seconds(seconds)

Sets the seconds of the timestamp, it represents the number of seconds since the Unix epoch(January 1, 1970, 00:00:00 UTC).

Parameters

Name Type Description
seconds
Integer The seconds of the timestamp.

Return

Time Stamp — This time stamp object, for chaining.

Design a Mobile Site
View Site in Mobile | Classic
Share by: