Sha256: 6fe85ecd1193d77a37209962fe63bfbf3c8c3826234fff75c29dafde87046797
Contents?: true
Size: 469 Bytes
Versions: 26
Compression:
Stored size: 469 Bytes
Contents
# frozen_string_literal: true # typed: strict module WorkOS module Types # This DirectoryStruct acts as a typed interface # for the Directory class class DirectoryStruct < T::Struct const :id, String const :name, String const :domain, T.nilable(String) const :type, String const :state, String const :organization_id, T.nilable(String) const :created_at, String const :updated_at, String end end end
Version data entries
26 entries across 26 versions & 1 rubygems