Sha256: 330713c8244adac8b4302d6fbd373130bd9d6575165c350b55fd4b2fca6c136b
Contents?: true
Size: 508 Bytes
Versions: 18
Compression:
Stored size: 508 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 :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
18 entries across 18 versions & 1 rubygems