Skip to content

Commit 3e4cfd6

Browse files
committed
Fix client cost as float64
1 parent d9d9b74 commit 3e4cfd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sms.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type SmsMessage struct {
2828
Message string `json:"message"`
2929
To string `json:"to"`
3030
Status string `json:"status"`
31-
ClientCost int `json:"client_cost"`
31+
ClientCost float64 `json:"client_cost"`
3232
CallbackURL string `json:"callback_url"`
3333
ScheduledFor interface{} `json:"scheduled_for"`
3434
Timezone interface{} `json:"timezone"`

0 commit comments

Comments
 (0)