- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- message DeviceAuthReqMessage {
- EnumAuthType AuthType = 1;
- string Credential = 2;
-
- enum EnumAuthType {
- Default = 0;
- DeviceCode = 1;
- Username = 2;
- InternalCode = 3;
- }
- }
|