Class: Believe::Models::TeamMemberCreateParams::Member::EquipmentManager
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Believe::Models::TeamMemberCreateParams::Member::EquipmentManager
- Defined in:
- lib/believe/models/team_member_create_params.rb
Defined Under Namespace
Modules: MemberType
Instance Attribute Summary collapse
-
#character_id ⇒ String
ID of the character (references /characters/id).
-
#is_head_kitman ⇒ Boolean?
Whether this is the head equipment manager.
-
#member_type ⇒ Symbol, ...
Discriminator field indicating this is an equipment manager.
-
#responsibilities ⇒ Array<String>?
List of responsibilities.
-
#team_id ⇒ String
ID of the team they belong to.
-
#years_with_team ⇒ Integer
Number of years with the current team.
Instance Method Summary collapse
-
#initialize(character_id:, team_id:, years_with_team:, is_head_kitman: nil, member_type: nil, responsibilities: nil) ⇒ Object
constructor
Equipment and kit management staff.
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(character_id:, team_id:, years_with_team:, is_head_kitman: nil, member_type: nil, responsibilities: nil) ⇒ Object
Equipment and kit management staff.
|
|
# File 'lib/believe/models/team_member_create_params.rb', line 312
|
Instance Attribute Details
#character_id ⇒ String
ID of the character (references /characters/id)
279 |
# File 'lib/believe/models/team_member_create_params.rb', line 279 required :character_id, String |
#is_head_kitman ⇒ Boolean?
Whether this is the head equipment manager
297 |
# File 'lib/believe/models/team_member_create_params.rb', line 297 optional :is_head_kitman, ::Believe::Internal::Type::Boolean |
#member_type ⇒ Symbol, ...
Discriminator field indicating this is an equipment manager
303 304 |
# File 'lib/believe/models/team_member_create_params.rb', line 303 optional :member_type, enum: -> { ::Believe::TeamMemberCreateParams::Member::EquipmentManager::MemberType } |
#responsibilities ⇒ Array<String>?
List of responsibilities
310 |
# File 'lib/believe/models/team_member_create_params.rb', line 310 optional :responsibilities, ::Believe::Internal::Type::ArrayOf[String] |
#team_id ⇒ String
ID of the team they belong to
285 |
# File 'lib/believe/models/team_member_create_params.rb', line 285 required :team_id, String |
#years_with_team ⇒ Integer
Number of years with the current team
291 |
# File 'lib/believe/models/team_member_create_params.rb', line 291 required :years_with_team, Integer |