Class: Believe::Models::TeamValues
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Believe::Models::TeamValues
- Defined in:
- lib/believe/models/team_values.rb
Instance Attribute Summary collapse
-
#primary_value ⇒ String
The team’s primary guiding value.
-
#secondary_values ⇒ Array<String>
Supporting values.
-
#team_motto ⇒ String
Team’s motivational motto.
Instance Method Summary collapse
-
#initialize(primary_value:, secondary_values:, team_motto:) ⇒ Object
constructor
Core values that define a team’s culture.
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(primary_value:, secondary_values:, team_motto:) ⇒ Object
Core values that define a team’s culture.
|
|
# File 'lib/believe/models/team_values.rb', line 24
|
Instance Attribute Details
#primary_value ⇒ String
The team’s primary guiding value
10 |
# File 'lib/believe/models/team_values.rb', line 10 required :primary_value, String |
#secondary_values ⇒ Array<String>
Supporting values
16 |
# File 'lib/believe/models/team_values.rb', line 16 required :secondary_values, ::Believe::Internal::Type::ArrayOf[String] |
#team_motto ⇒ String
Team’s motivational motto
22 |
# File 'lib/believe/models/team_values.rb', line 22 required :team_motto, String |