Sha256: 6eaa8481b14718304bc3687f1a580f78366ce316acb4fe859d35b90fa9d6d814
Contents?: true
Size: 595 Bytes
Versions: 9
Compression:
Stored size: 595 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