14 lines
281 B
Protocol Buffer
14 lines
281 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "BizScopeInfo.proto";
|
|
|
|
message JSOAuthResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required uint32 _ScopeCount = 2;
|
|
repeated BizScopeInfo _ScopeList = 3;
|
|
optional string _OAuthTitle = 4;
|
|
}
|