Sha256: a0310f0f080d5069dd2b59509b80ed4c129fc335bb540f2fd5b62ce34a8a4130

Contents?: true

Size: 205 Bytes

Versions: 1

Compression:

Stored size: 205 Bytes

Contents

module OData
  class Int64Type < PrimitiveType
    def valid_value?(value)
      Integer === value
    end

    def coerce(value)
      value.to_i
    end

    def name
      "Edm.Int64"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
microsoft_graph-0.1.2 lib/odata/types/primitive_types/int_64_type.rb