Class: Sentdm::Models::ProfileDetail
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Sentdm::Models::ProfileDetail
- Defined in:
- lib/sentdm/models/profile_detail.rb
Defined Under Namespace
Classes: Settings
Instance Attribute Summary collapse
-
#created_at ⇒ Time?
When the profile was created.
-
#description ⇒ String?
Profile description.
-
#email ⇒ String?
Profile email (inherited from organization).
-
#icon ⇒ String?
Profile icon URL.
-
#id ⇒ String?
Profile unique identifier.
-
#name ⇒ String?
Profile name.
-
#organization_id ⇒ String?
Parent organization ID.
-
#settings ⇒ Sentdm::Models::ProfileDetail::Settings?
Profile configuration settings.
-
#short_name ⇒ String?
Profile short name (abbreviation).
-
#status ⇒ String?
Profile setup status: incomplete, pending_review, approved, rejected.
-
#updated_at ⇒ Time?
When the profile was last updated.
Instance Method Summary collapse
-
#initialize(id: nil, created_at: nil, description: nil, email: nil, icon: nil, name: nil, organization_id: nil, settings: nil, short_name: nil, status: nil, updated_at: nil) ⇒ Object
constructor
Detailed profile response for v3 API.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(id: nil, created_at: nil, description: nil, email: nil, icon: nil, name: nil, organization_id: nil, settings: nil, short_name: nil, status: nil, updated_at: nil) ⇒ Object
Detailed profile response for v3 API
|
|
# File 'lib/sentdm/models/profile_detail.rb', line 72
|
Instance Attribute Details
#created_at ⇒ Time?
When the profile was created
16 |
# File 'lib/sentdm/models/profile_detail.rb', line 16 optional :created_at, Time |
#description ⇒ String?
Profile description
22 |
# File 'lib/sentdm/models/profile_detail.rb', line 22 optional :description, String, nil?: true |
#email ⇒ String?
Profile email (inherited from organization)
28 |
# File 'lib/sentdm/models/profile_detail.rb', line 28 optional :email, String, nil?: true |
#icon ⇒ String?
Profile icon URL
34 |
# File 'lib/sentdm/models/profile_detail.rb', line 34 optional :icon, String, nil?: true |
#id ⇒ String?
Profile unique identifier
10 |
# File 'lib/sentdm/models/profile_detail.rb', line 10 optional :id, String |
#name ⇒ String?
Profile name
40 |
# File 'lib/sentdm/models/profile_detail.rb', line 40 optional :name, String |
#organization_id ⇒ String?
Parent organization ID
46 |
# File 'lib/sentdm/models/profile_detail.rb', line 46 optional :organization_id, String, nil?: true |
#settings ⇒ Sentdm::Models::ProfileDetail::Settings?
Profile configuration settings
52 |
# File 'lib/sentdm/models/profile_detail.rb', line 52 optional :settings, -> { Sentdm::ProfileDetail::Settings } |
#short_name ⇒ String?
Profile short name (abbreviation)
58 |
# File 'lib/sentdm/models/profile_detail.rb', line 58 optional :short_name, String, nil?: true |
#status ⇒ String?
Profile setup status: incomplete, pending_review, approved, rejected
64 |
# File 'lib/sentdm/models/profile_detail.rb', line 64 optional :status, String |
#updated_at ⇒ Time?
When the profile was last updated
70 |
# File 'lib/sentdm/models/profile_detail.rb', line 70 optional :updated_at, Time, nil?: true |