class Gorillib::Factory::IntTimeFactory

Public Class Methods

typename() click to toggle source
# File lib/gorillib/model/type/extended.rb, line 55
def self.typename() :int_time ; end

Public Instance Methods

convert(obj) click to toggle source
# File lib/gorillib/model/type/extended.rb, line 58
def convert(obj)
  result = super
  result.nil? ? nil : result.to_i
end