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.



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

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.



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

def emotion_intensity
  @emotion_intensity
end

#emotion_presetObject (readonly)

Returns the value of attribute emotion_preset.



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

def emotion_preset
  @emotion_preset
end

Instance Method Details

#to_hObject



78
79
80
# File 'lib/typecast/models.rb', line 78

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