Class: Typecast::Models::PresetPrompt

Inherits:
Object
  • Object
show all
Defined in:
lib/typecast/models.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_intensityObject (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_presetObject (readonly)

Returns the value of attribute emotion_preset.



65
66
67
# File 'lib/typecast/models.rb', line 65

def emotion_preset
  @emotion_preset
end

Instance Method Details

#to_hObject



72
73
74
# File 'lib/typecast/models.rb', line 72

def to_h
  Models.compact(emotion_type: "preset", emotion_preset: emotion_preset, emotion_intensity: emotion_intensity)
end