Sha256: 9613ade325d295e1bb9b5e64ed3306973903aecad26cc70c0e6b0a6a7c28add7

Contents?: true

Size: 412 Bytes

Versions: 2

Compression:

Stored size: 412 Bytes

Contents

# frozen_string_literal: true
# typed: strict

module WorkOS
  module Types
    # This ConnectionStruct acts as a typed interface
    # for the Connection class
    class ConnectionStruct < T::Struct
      const :id, String
      const :name, String
      const :connection_type, String
      const :domains, T::Array[T.untyped]
      const :organization_id, String
      const :status, String
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workos-0.11.1 lib/workos/types/connection_struct.rb
workos-0.11.0 lib/workos/types/connection_struct.rb