Sha256: d8f25967a3cf21dc7b08a7f56e674672da539e1ef4862c9f07c4a2f3bdb05066
Contents?: true
Size: 529 Bytes
Versions: 6
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true require_relative './convertors' module Workato module Connector module Sdk class Schema module Field class String < SimpleDelegator include Convertors DEFAULT_ATTRIBUTES = { type: 'string', control_type: 'text' }.with_indifferent_access.freeze def initialize(field) super(DEFAULT_ATTRIBUTES.merge(field)) end end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems