File tree 3 files changed +13
-9
lines changed
3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
-
2
+ ## [ 7.57.2] ( https://github.com/plivo/plivo-go/tree/v7.57.2 ) (2025-02-24)
3
+ ** Enhancement - Supporting parameter_name in WhatsApp Template .**
4
+ - Supporting parameter_name in WhatsApp Template .
5
+ -
3
6
## [ 7.57.1] ( https://github.com/plivo/plivo-go/tree/v7.57.1 ) (2025-01-27)
4
7
** New Param - Start Stream Api**
5
8
- Support for ` cx_bot ` parameter in Start Stream API.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
13
13
"github.com/google/go-querystring/query"
14
14
)
15
15
16
- const sdkVersion = "7.57.1 "
16
+ const sdkVersion = "7.57.2 "
17
17
18
18
const lookupBaseUrl = "lookup.plivo.com"
19
19
Original file line number Diff line number Diff line change @@ -144,13 +144,14 @@ type Card struct {
144
144
}
145
145
146
146
type Parameter struct {
147
- Type string `mapstructure:"type" json:"type" validate:"required"`
148
- Text string `mapstructure:"text" json:"text,omitempty"`
149
- Media string `mapstructure:"media" json:"media,omitempty"`
150
- Payload string `mapstructure:"payload" json:"payload,omitempty"`
151
- Currency * Currency `mapstructure:"currency" json:"currency,omitempty"`
152
- DateTime * DateTime `mapstructure:"date_time" json:"date_time,omitempty"`
153
- Location * Location `mapstructure:"location" json:"location,omitempty"`
147
+ Type string `mapstructure:"type" json:"type" validate:"required"`
148
+ Text string `mapstructure:"text" json:"text,omitempty"`
149
+ Media string `mapstructure:"media" json:"media,omitempty"`
150
+ Payload string `mapstructure:"payload" json:"payload,omitempty"`
151
+ Currency * Currency `mapstructure:"currency" json:"currency,omitempty"`
152
+ DateTime * DateTime `mapstructure:"date_time" json:"date_time,omitempty"`
153
+ Location * Location `mapstructure:"location" json:"location,omitempty"`
154
+ ParameterName * string `mapstructure:"parameter_name" json:"parameter_name,omitempty"`
154
155
}
155
156
156
157
type Location struct {
You can’t perform that action at this time.
0 commit comments