File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ func CallFlows(client *messagebird.Client) *Paginator {
114
114
return newPaginator (client , "call-flow/" , reflect .TypeOf (CallFlow {}))
115
115
}
116
116
117
- // CreateCallFlow creates the callflow remotely.
117
+ // Create creates the callflow remotely.
118
118
//
119
119
// The callflow is updated in-place.
120
120
func (callflow * CallFlow ) Create (client * messagebird.Client ) error {
@@ -128,7 +128,7 @@ func (callflow *CallFlow) Create(client *messagebird.Client) error {
128
128
return nil
129
129
}
130
130
131
- // UpdateCallFlow updates the call flow by overwriting it.
131
+ // Update updates the call flow by overwriting it.
132
132
//
133
133
// An error is returned if no such call flow exists or is accessible.
134
134
func (callflow * CallFlow ) Update (client * messagebird.Client ) error {
@@ -142,7 +142,7 @@ func (callflow *CallFlow) Update(client *messagebird.Client) error {
142
142
return nil
143
143
}
144
144
145
- // DeleteCallFlow deletes the CallFlow.
145
+ // Delete deletes the CallFlow.
146
146
func (callflow * CallFlow ) Delete (client * messagebird.Client ) error {
147
147
return client .Request (nil , "DELETE" , "call-flow/" + callflow .ID , nil )
148
148
}
You can’t perform that action at this time.
0 commit comments