class Yoti::SignedTimeStamp

Encapsulates anchor signed time stamp

Attributes

time_stamp[R]
version[R]

Public Class Methods

new(version, time_stamp) click to toggle source
# File lib/yoti/data_type/signed_time_stamp.rb, line 6
def initialize(version, time_stamp)
  @version = version
  @time_stamp = time_stamp.utc
end