Sha256: cdbeaf46a1b9dce102a95bedb11c526cc2daf9e32413c7ef88a177a02be8cc7b

Contents?: true

Size: 347 Bytes

Versions: 1

Compression:

Stored size: 347 Bytes

Contents

# frozen_string_literal: true

module Zoho
  module People
    class Attendance
      DATE_FORMAT = 'dd/MM/yyyy HH:mm:ss'

      attr_reader :check_in, :check_out, :email_id

      def initialize(check_in:, check_out:, email_id:)
        @check_in = check_in
        @check_out = check_out
        @email_id = email_id
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
attend-0.1.0 lib/zoho/people/attendance.rb