Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b2bc58 commit b2d2cf7Copy full SHA for b2d2cf7
consultingapis/dingtalk/v1/dingtalk.proto
@@ -53,7 +53,7 @@ service DingTalkService {
53
rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) {
54
option (google.api.http) = {
55
post: "/dingtalk/chat/v1/recruit/create"
56
- body: "*"
+ body: "body"
57
};
58
}
59
@@ -141,8 +141,11 @@ message SyncGradeChatGroupResponse {
141
142
143
message CreateRecruitChatGroupRequest{
144
- repeated string member_id = 1;
145
- string name = 2;
+ Body body = 1;
+ message Body {
146
+ repeated string member_id = 1;
147
+ string name = 2;
148
+ }
149
150
151
message CreateRecruitChatGroupResponse{
0 commit comments