Sha256: e586cb7d6156fe629f7aadd953abb864face8397b398d61c401cb0f03f8015c9
Contents?: true
Size: 605 Bytes
Versions: 11
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true # typed: strict module WorkOS module Types # The ProfileStruct acts as a typed interface # for the Profile class class ProfileStruct < T::Struct const :id, String const :email, String const :first_name, T.nilable(String) const :last_name, T.nilable(String) const :groups, T.nilable(T::Array[String]) const :organization_id, T.nilable(String) const :connection_id, String const :connection_type, String const :idp_id, T.nilable(String) const :raw_attributes, T::Hash[Symbol, Object] end end end
Version data entries
11 entries across 11 versions & 1 rubygems