Sha256: e6324af78334f0e2d622d04b9962d251365375a795a19e7a4d7a56fd2bec478f

Contents?: true

Size: 399 Bytes

Versions: 1

Compression:

Stored size: 399 Bytes

Contents

# typed: true
# frozen_string_literal: true

module Workato
  module Connector
    module Sdk
      class Schema
        module Type
          class UnicodeString < ::String
            def initialize(str)
              super(str, **{})
              encode!('UTF-8')
            end

            def binary?
              false
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
workato-connector-sdk-1.3.0 lib/workato/connector/sdk/schema/type/unicode_string.rb