Sha256: 59f45522dd6e7b0b5e3ebb0c93f67bdf6668294c43451f40f991cd571656c9c7
Contents?: true
Size: 514 Bytes
Versions: 26
Compression:
Stored size: 514 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, T.nilable(String) const :state, String const :status, String const :created_at, String const :updated_at, String end end end
Version data entries
26 entries across 26 versions & 1 rubygems