Skip to content

Commit

Permalink
fix: replace the "body" with "*" from CreateRecruitChatGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
jaketmoon committed Sep 23, 2024
1 parent 2c3bb1f commit 637afc9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions consultingapis/dingtalk/v1/dingtalk.proto
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ service DingTalkService {
rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) {
option (google.api.http) = {
post: "/dingtalk/chat/v1/recruit/create"
body: "body"
body: "*"
};
}
}
Expand Down Expand Up @@ -142,11 +142,7 @@ message SyncGradeChatGroupResponse {

message CreateRecruitChatGroupRequest{
repeated string member_id = 1;
Body body = 2;

message Body {
string name = 1;
}
string name = 2;
}

message CreateRecruitChatGroupResponse{
Expand Down

0 comments on commit 637afc9

Please sign in to comment.