Class: HubSpotSDK::Models::Settings::PublicUserUpdate
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- HubSpotSDK::Models::Settings::PublicUserUpdate
- Defined in:
- lib/hubspot_sdk/models/settings/public_user_update.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#first_name ⇒ String?
The first name of the user.
-
#last_name ⇒ String?
The last name of the user.
-
#primary_team_id ⇒ String?
The user’s primary team.
-
#role_id ⇒ String?
The user’s role.
-
#secondary_team_ids ⇒ Array<String>?
The user’s additional teams.
Instance Method Summary collapse
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(first_name: nil, last_name: nil, primary_team_id: nil, role_id: nil, secondary_team_ids: nil) ⇒ Object
|
|
# File 'lib/hubspot_sdk/models/settings/public_user_update.rb', line 37
|
Instance Attribute Details
#first_name ⇒ String?
The first name of the user.
11 |
# File 'lib/hubspot_sdk/models/settings/public_user_update.rb', line 11 optional :first_name, String, api_name: :firstName |
#last_name ⇒ String?
The last name of the user.
17 |
# File 'lib/hubspot_sdk/models/settings/public_user_update.rb', line 17 optional :last_name, String, api_name: :lastName |
#primary_team_id ⇒ String?
The user’s primary team.
23 |
# File 'lib/hubspot_sdk/models/settings/public_user_update.rb', line 23 optional :primary_team_id, String, api_name: :primaryTeamId |
#role_id ⇒ String?
The user’s role.
29 |
# File 'lib/hubspot_sdk/models/settings/public_user_update.rb', line 29 optional :role_id, String, api_name: :roleId |
#secondary_team_ids ⇒ Array<String>?
The user’s additional teams.
35 |
# File 'lib/hubspot_sdk/models/settings/public_user_update.rb', line 35 optional :secondary_team_ids, HubSpotSDK::Internal::Type::ArrayOf[String], api_name: :secondaryTeamIds |