Class: Typecast::Models::PresetPrompt
- Inherits:
-
Object
- Object
- Typecast::Models::PresetPrompt
- Defined in:
- lib/typecast/models.rb
Instance Attribute Summary collapse
-
#emotion_intensity ⇒ Object
readonly
Returns the value of attribute emotion_intensity.
-
#emotion_preset ⇒ Object
readonly
Returns the value of attribute emotion_preset.
Instance Method Summary collapse
-
#initialize(emotion_preset: nil, emotion_intensity: nil) ⇒ PresetPrompt
constructor
A new instance of PresetPrompt.
- #to_h ⇒ Object
Constructor Details
#initialize(emotion_preset: nil, emotion_intensity: nil) ⇒ PresetPrompt
Returns a new instance of PresetPrompt.
67 68 69 70 |
# File 'lib/typecast/models.rb', line 67 def initialize(emotion_preset: nil, emotion_intensity: nil) @emotion_preset = emotion_preset @emotion_intensity = emotion_intensity end |
Instance Attribute Details
#emotion_intensity ⇒ Object (readonly)
Returns the value of attribute emotion_intensity.
65 66 67 |
# File 'lib/typecast/models.rb', line 65 def emotion_intensity @emotion_intensity end |
#emotion_preset ⇒ Object (readonly)
Returns the value of attribute emotion_preset.
65 66 67 |
# File 'lib/typecast/models.rb', line 65 def emotion_preset @emotion_preset end |