14 lines
278 B
Protocol Buffer
14 lines
278 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseRequest.proto";
|
|
import "BizScopeInfo.proto";
|
|
|
|
message SetOAuthScopeRequest {
|
|
required BaseRequest _BaseRequest = 1;
|
|
optional string _AppID = 2;
|
|
required uint32 _ScopeCount = 3;
|
|
repeated BizScopeInfo _ScopeList = 4;
|
|
}
|