From 62b2392347460492076b6495752d3818f1a47e4e Mon Sep 17 00:00:00 2001 From: jiyoungcheon Date: Fri, 10 Jan 2025 00:35:39 -0500 Subject: [PATCH] voiceName, speed, volume, pitch -> string to int --- icshttp/handler.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/icshttp/handler.go b/icshttp/handler.go index 8c0e153..51bb620 100644 --- a/icshttp/handler.go +++ b/icshttp/handler.go @@ -78,10 +78,10 @@ type ResData struct { MinDigit int `json:"minDigit"` DigitTerm int `json:"digitTerm"` TelNo string `json:"telNo"` - VoiceName string `json:"voiceName"` - Speed string `json:"speed"` - Volume string `json:"volume"` - Pitch string `json:"pitch"` + VoiceName int `json:"voiceName"` + Speed int `json:"speed"` + Volume int `json:"volume"` + Pitch int `json:"pitch"` EndCharacter []string `json:"endCharacter"` MaxWaitTime int `json:"maxNoInputTime"` UUI json.RawMessage `json:"uui"`