Sha256: 5274fee5e8c844460bb735240e437dbdb13ef47c14657d486f4e4c263d9de8c3
Contents?: true
Size: 597 Bytes
Versions: 9
Compression:
Stored size: 597 Bytes
Contents
# typed: true # frozen_string_literal: true require_relative './convertors' module Workato module Connector module Sdk class Schema module Field class Integer < SimpleDelegator include Convertors DEFAULT_ATTRIBUTES = { type: 'integer', control_type: 'number', parse_output: 'integer_conversion' }.with_indifferent_access.freeze def initialize(field) super(DEFAULT_ATTRIBUTES.merge(field)) end end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems