Sha256: a8ffd8268f733b09ae7f4c16132d8d49b17f391e739e86deec33aa9bcf20f604
Contents?: true
Size: 636 Bytes
Versions: 10
Compression:
Stored size: 636 Bytes
Contents
# frozen_string_literal: true # typed: strict module WorkOS module Types # The DirectoryUserStruct acts as a typed interface # for the DirectoryUser class class DirectoryUserStruct < T::Struct const :id, String const :idp_id, String const :emails, T::Array[T.untyped] const :first_name, T.nilable(String) const :last_name, T.nilable(String) const :username, T.nilable(String) const :state, T.nilable(String) const :groups, T::Array[T.untyped] const :custom_attributes, T::Hash[Symbol, T.untyped] const :raw_attributes, T::Hash[Symbol, Object] end end end
Version data entries
10 entries across 10 versions & 1 rubygems