12 lines
362 B
Protocol Buffer
12 lines
362 B
Protocol Buffer
|
|
syntax = "proto3";
|
|||
|
|
package anonymous.v1;
|
|||
|
|
option go_package = "git.shenxianhe.cn/shenxianhe/sdk/anonymous/v1;anonymousv1";
|
|||
|
|
|
|||
|
|
import "enums/v1/user.proto";
|
|||
|
|
|
|||
|
|
message SendCredentialRequest {
|
|||
|
|
enums.v1.AuthenticationType auth_type = 1; // 认证类型
|
|||
|
|
string auth_id = 2; // 认证ID,根据auth_type存储不同的账号信息
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
message SendCredentialResponse {}
|