Skip to content

Commit ec91cd8

Browse files
committed
conversationId -> conversationID
1 parent cea3afa commit ec91cd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conversation/conversation.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ func Start(c messagebird.ClientInterface, req *StartRequest) (*Conversation, err
202202
}
203203

204204
// Reply Send a new message to an existing conversation. In case the conversation is archived, a new conversation is created.
205-
func Reply(c messagebird.ClientInterface, conversationId string, req *ReplyRequest) (*Message, error) {
206-
uri := fmt.Sprintf("%s/%s/%s", path, conversationId, messagesPath)
205+
func Reply(c messagebird.ClientInterface, conversationID string, req *ReplyRequest) (*Message, error) {
206+
uri := fmt.Sprintf("%s/%s/%s", path, conversationID, messagesPath)
207207

208208
message := &Message{}
209209
if err := request(c, message, http.MethodPost, uri, req); err != nil {

0 commit comments

Comments
 (0)