Sha256: 7bd7fb1cc4f8f682fbc473017853e79a1c92bac6faf6c306afd1b1e3e6452462

Contents?: true

Size: 235 Bytes

Versions: 3

Compression:

Stored size: 235 Bytes

Contents

module Yoti
  # Encapsulates anchor signed time stamp
  class SignedTimeStamp
    attr_reader :version, :time_stamp

    def initialize(version, time_stamp)
      @version = version
      @time_stamp = time_stamp.utc
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yoti-1.10.0 lib/yoti/data_type/signed_time_stamp.rb
yoti-1.9.0 lib/yoti/data_type/signed_time_stamp.rb
yoti-1.8.0 lib/yoti/data_type/signed_time_stamp.rb