Class: Sentdm::Models::UserInviteResponse::Data
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Sentdm::Models::UserInviteResponse::Data
- Defined in:
- lib/sentdm/models/user_invite_response.rb
Overview
Instance Attribute Summary collapse
-
#created_at ⇒ Time?
When the user was added to the organization.
-
#email ⇒ String?
User email address.
-
#id ⇒ String?
User unique identifier.
-
#invited_at ⇒ Time?
When the user was invited.
-
#last_login_at ⇒ Time?
When the user last logged in.
-
#name ⇒ String?
User full name.
-
#role ⇒ String?
User role in the organization: admin, billing, developer.
-
#status ⇒ String?
User status: active, invited, suspended, rejected.
-
#updated_at ⇒ Time?
When the user record was last updated.
Method Summary
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, 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
This class inherits a constructor from Sentdm::Internal::Type::BaseModel
Instance Attribute Details
#created_at ⇒ Time?
When the user was added to the organization
54 |
# File 'lib/sentdm/models/user_invite_response.rb', line 54 optional :created_at, Time |
#email ⇒ String?
User email address
60 |
# File 'lib/sentdm/models/user_invite_response.rb', line 60 optional :email, String |
#id ⇒ String?
User unique identifier
48 |
# File 'lib/sentdm/models/user_invite_response.rb', line 48 optional :id, String |
#invited_at ⇒ Time?
When the user was invited
66 |
# File 'lib/sentdm/models/user_invite_response.rb', line 66 optional :invited_at, Time, nil?: true |
#last_login_at ⇒ Time?
When the user last logged in
72 |
# File 'lib/sentdm/models/user_invite_response.rb', line 72 optional :last_login_at, Time, nil?: true |
#name ⇒ String?
User full name
78 |
# File 'lib/sentdm/models/user_invite_response.rb', line 78 optional :name, String |
#role ⇒ String?
User role in the organization: admin, billing, developer
84 |
# File 'lib/sentdm/models/user_invite_response.rb', line 84 optional :role, String |
#status ⇒ String?
User status: active, invited, suspended, rejected
90 |
# File 'lib/sentdm/models/user_invite_response.rb', line 90 optional :status, String |
#updated_at ⇒ Time?
When the user record was last updated
96 |
# File 'lib/sentdm/models/user_invite_response.rb', line 96 optional :updated_at, Time, nil?: true |