1 Star 0 Fork 0

WisdomClassroom / core

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
questionResponse.pb.go 57.94 KB
Copy Edit Raw Blame History
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683
//******************************************************************************
// Copyright 2020 huanggefan.cn
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//****************************************************************************
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.23.0-devel
// protoc v3.12.4
// source: questionResponse.proto
package pb
import (
proto "github.com/golang/protobuf/proto"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
// This is a compile-time assertion that a sufficiently up-to-date version
// of the legacy proto package is being used.
const _ = proto.ProtoPackageIsVersion4
type GetQuestionsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Questions []*QuestionBasicInfo `protobuf:"bytes,1,rep,name=Questions,proto3" json:"Questions,omitempty"`
Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *GetQuestionsResponse) Reset() {
*x = GetQuestionsResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetQuestionsResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetQuestionsResponse) ProtoMessage() {}
func (x *GetQuestionsResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetQuestionsResponse.ProtoReflect.Descriptor instead.
func (*GetQuestionsResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{0}
}
func (x *GetQuestionsResponse) GetQuestions() []*QuestionBasicInfo {
if x != nil {
return x.Questions
}
return nil
}
func (x *GetQuestionsResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type GetQuestionsFullInfoResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Questions []*QuestionFullInfo `protobuf:"bytes,1,rep,name=Questions,proto3" json:"Questions,omitempty"`
Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *GetQuestionsFullInfoResponse) Reset() {
*x = GetQuestionsFullInfoResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetQuestionsFullInfoResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetQuestionsFullInfoResponse) ProtoMessage() {}
func (x *GetQuestionsFullInfoResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetQuestionsFullInfoResponse.ProtoReflect.Descriptor instead.
func (*GetQuestionsFullInfoResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{1}
}
func (x *GetQuestionsFullInfoResponse) GetQuestions() []*QuestionFullInfo {
if x != nil {
return x.Questions
}
return nil
}
func (x *GetQuestionsFullInfoResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type ListQuestionsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Questions []*QuestionMoreInfo `protobuf:"bytes,1,rep,name=Questions,proto3" json:"Questions,omitempty"`
Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *ListQuestionsResponse) Reset() {
*x = ListQuestionsResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListQuestionsResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListQuestionsResponse) ProtoMessage() {}
func (x *ListQuestionsResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListQuestionsResponse.ProtoReflect.Descriptor instead.
func (*ListQuestionsResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{2}
}
func (x *ListQuestionsResponse) GetQuestions() []*QuestionMoreInfo {
if x != nil {
return x.Questions
}
return nil
}
func (x *ListQuestionsResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type ListWrongQuestionAnswersResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Questions []*QuestionBasicInfoAndAnswer `protobuf:"bytes,1,rep,name=Questions,proto3" json:"Questions,omitempty"`
Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *ListWrongQuestionAnswersResponse) Reset() {
*x = ListWrongQuestionAnswersResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListWrongQuestionAnswersResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListWrongQuestionAnswersResponse) ProtoMessage() {}
func (x *ListWrongQuestionAnswersResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListWrongQuestionAnswersResponse.ProtoReflect.Descriptor instead.
func (*ListWrongQuestionAnswersResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{3}
}
func (x *ListWrongQuestionAnswersResponse) GetQuestions() []*QuestionBasicInfoAndAnswer {
if x != nil {
return x.Questions
}
return nil
}
func (x *ListWrongQuestionAnswersResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type ListRecommendedQuestionsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Questions []*QuestionBasicInfo `protobuf:"bytes,1,rep,name=Questions,proto3" json:"Questions,omitempty"`
Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *ListRecommendedQuestionsResponse) Reset() {
*x = ListRecommendedQuestionsResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListRecommendedQuestionsResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListRecommendedQuestionsResponse) ProtoMessage() {}
func (x *ListRecommendedQuestionsResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListRecommendedQuestionsResponse.ProtoReflect.Descriptor instead.
func (*ListRecommendedQuestionsResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{4}
}
func (x *ListRecommendedQuestionsResponse) GetQuestions() []*QuestionBasicInfo {
if x != nil {
return x.Questions
}
return nil
}
func (x *ListRecommendedQuestionsResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type CreateQuestionResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UUID string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *CreateQuestionResponse) Reset() {
*x = CreateQuestionResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateQuestionResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateQuestionResponse) ProtoMessage() {}
func (x *CreateQuestionResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateQuestionResponse.ProtoReflect.Descriptor instead.
func (*CreateQuestionResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{5}
}
func (x *CreateQuestionResponse) GetUUID() string {
if x != nil {
return x.UUID
}
return ""
}
func (x *CreateQuestionResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type UpdateQuestionResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *UpdateQuestionResponse) Reset() {
*x = UpdateQuestionResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UpdateQuestionResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UpdateQuestionResponse) ProtoMessage() {}
func (x *UpdateQuestionResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UpdateQuestionResponse.ProtoReflect.Descriptor instead.
func (*UpdateQuestionResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{6}
}
func (x *UpdateQuestionResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type DeleteQuestionResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *DeleteQuestionResponse) Reset() {
*x = DeleteQuestionResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteQuestionResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteQuestionResponse) ProtoMessage() {}
func (x *DeleteQuestionResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteQuestionResponse.ProtoReflect.Descriptor instead.
func (*DeleteQuestionResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{7}
}
func (x *DeleteQuestionResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type AnswerQuestionResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
}
func (x *AnswerQuestionResponse) Reset() {
*x = AnswerQuestionResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *AnswerQuestionResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AnswerQuestionResponse) ProtoMessage() {}
func (x *AnswerQuestionResponse) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use AnswerQuestionResponse.ProtoReflect.Descriptor instead.
func (*AnswerQuestionResponse) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{8}
}
func (x *AnswerQuestionResponse) GetStatus() *ResponseStatus {
if x != nil {
return x.Status
}
return nil
}
type QuestionLittleInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UUID string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
Question string `protobuf:"bytes,2,opt,name=Question,proto3" json:"Question,omitempty"`
Type int32 `protobuf:"varint,3,opt,name=Type,proto3" json:"Type,omitempty"`
Level int32 `protobuf:"varint,4,opt,name=Level,proto3" json:"Level,omitempty"`
AnswerCount int32 `protobuf:"varint,5,opt,name=AnswerCount,proto3" json:"AnswerCount,omitempty"`
CorrectCount int32 `protobuf:"varint,6,opt,name=CorrectCount,proto3" json:"CorrectCount,omitempty"`
ChapterUUID string `protobuf:"bytes,7,opt,name=ChapterUUID,proto3" json:"ChapterUUID,omitempty"`
KnowledgePoints []*KnowledgePointBasicInfo `protobuf:"bytes,8,rep,name=KnowledgePoints,proto3" json:"KnowledgePoints,omitempty"`
}
func (x *QuestionLittleInfo) Reset() {
*x = QuestionLittleInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QuestionLittleInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QuestionLittleInfo) ProtoMessage() {}
func (x *QuestionLittleInfo) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QuestionLittleInfo.ProtoReflect.Descriptor instead.
func (*QuestionLittleInfo) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{9}
}
func (x *QuestionLittleInfo) GetUUID() string {
if x != nil {
return x.UUID
}
return ""
}
func (x *QuestionLittleInfo) GetQuestion() string {
if x != nil {
return x.Question
}
return ""
}
func (x *QuestionLittleInfo) GetType() int32 {
if x != nil {
return x.Type
}
return 0
}
func (x *QuestionLittleInfo) GetLevel() int32 {
if x != nil {
return x.Level
}
return 0
}
func (x *QuestionLittleInfo) GetAnswerCount() int32 {
if x != nil {
return x.AnswerCount
}
return 0
}
func (x *QuestionLittleInfo) GetCorrectCount() int32 {
if x != nil {
return x.CorrectCount
}
return 0
}
func (x *QuestionLittleInfo) GetChapterUUID() string {
if x != nil {
return x.ChapterUUID
}
return ""
}
func (x *QuestionLittleInfo) GetKnowledgePoints() []*KnowledgePointBasicInfo {
if x != nil {
return x.KnowledgePoints
}
return nil
}
type QuestionBasicInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UUID string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
Question string `protobuf:"bytes,2,opt,name=Question,proto3" json:"Question,omitempty"`
Analysis string `protobuf:"bytes,3,opt,name=Analysis,proto3" json:"Analysis,omitempty"`
Answers *QuestionAnswers `protobuf:"bytes,4,opt,name=Answers,proto3" json:"Answers,omitempty"`
Options *QuestionOptions `protobuf:"bytes,5,opt,name=Options,proto3" json:"Options,omitempty"`
Type int32 `protobuf:"varint,6,opt,name=Type,proto3" json:"Type,omitempty"`
}
func (x *QuestionBasicInfo) Reset() {
*x = QuestionBasicInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QuestionBasicInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QuestionBasicInfo) ProtoMessage() {}
func (x *QuestionBasicInfo) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QuestionBasicInfo.ProtoReflect.Descriptor instead.
func (*QuestionBasicInfo) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{10}
}
func (x *QuestionBasicInfo) GetUUID() string {
if x != nil {
return x.UUID
}
return ""
}
func (x *QuestionBasicInfo) GetQuestion() string {
if x != nil {
return x.Question
}
return ""
}
func (x *QuestionBasicInfo) GetAnalysis() string {
if x != nil {
return x.Analysis
}
return ""
}
func (x *QuestionBasicInfo) GetAnswers() *QuestionAnswers {
if x != nil {
return x.Answers
}
return nil
}
func (x *QuestionBasicInfo) GetOptions() *QuestionOptions {
if x != nil {
return x.Options
}
return nil
}
func (x *QuestionBasicInfo) GetType() int32 {
if x != nil {
return x.Type
}
return 0
}
type QuestionMoreInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UUID string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
Question string `protobuf:"bytes,2,opt,name=Question,proto3" json:"Question,omitempty"`
Analysis string `protobuf:"bytes,3,opt,name=Analysis,proto3" json:"Analysis,omitempty"`
Answers *QuestionAnswers `protobuf:"bytes,4,opt,name=Answers,proto3" json:"Answers,omitempty"`
Options *QuestionOptions `protobuf:"bytes,5,opt,name=Options,proto3" json:"Options,omitempty"`
Type int32 `protobuf:"varint,21,opt,name=Type,proto3" json:"Type,omitempty"`
Level int32 `protobuf:"varint,22,opt,name=Level,proto3" json:"Level,omitempty"`
AnswerCount uint32 `protobuf:"varint,23,opt,name=AnswerCount,proto3" json:"AnswerCount,omitempty"`
CorrectCount uint32 `protobuf:"varint,24,opt,name=CorrectCount,proto3" json:"CorrectCount,omitempty"`
ChapterUUID string `protobuf:"bytes,25,opt,name=ChapterUUID,proto3" json:"ChapterUUID,omitempty"`
}
func (x *QuestionMoreInfo) Reset() {
*x = QuestionMoreInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QuestionMoreInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QuestionMoreInfo) ProtoMessage() {}
func (x *QuestionMoreInfo) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QuestionMoreInfo.ProtoReflect.Descriptor instead.
func (*QuestionMoreInfo) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{11}
}
func (x *QuestionMoreInfo) GetUUID() string {
if x != nil {
return x.UUID
}
return ""
}
func (x *QuestionMoreInfo) GetQuestion() string {
if x != nil {
return x.Question
}
return ""
}
func (x *QuestionMoreInfo) GetAnalysis() string {
if x != nil {
return x.Analysis
}
return ""
}
func (x *QuestionMoreInfo) GetAnswers() *QuestionAnswers {
if x != nil {
return x.Answers
}
return nil
}
func (x *QuestionMoreInfo) GetOptions() *QuestionOptions {
if x != nil {
return x.Options
}
return nil
}
func (x *QuestionMoreInfo) GetType() int32 {
if x != nil {
return x.Type
}
return 0
}
func (x *QuestionMoreInfo) GetLevel() int32 {
if x != nil {
return x.Level
}
return 0
}
func (x *QuestionMoreInfo) GetAnswerCount() uint32 {
if x != nil {
return x.AnswerCount
}
return 0
}
func (x *QuestionMoreInfo) GetCorrectCount() uint32 {
if x != nil {
return x.CorrectCount
}
return 0
}
func (x *QuestionMoreInfo) GetChapterUUID() string {
if x != nil {
return x.ChapterUUID
}
return ""
}
type QuestionFullInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UUID string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
Question string `protobuf:"bytes,2,opt,name=Question,proto3" json:"Question,omitempty"`
Analysis string `protobuf:"bytes,3,opt,name=Analysis,proto3" json:"Analysis,omitempty"`
Answers *QuestionAnswers `protobuf:"bytes,4,opt,name=Answers,proto3" json:"Answers,omitempty"`
Options *QuestionOptions `protobuf:"bytes,5,opt,name=Options,proto3" json:"Options,omitempty"`
Type int32 `protobuf:"varint,6,opt,name=Type,proto3" json:"Type,omitempty"`
Level int32 `protobuf:"varint,7,opt,name=Level,proto3" json:"Level,omitempty"`
AnswerCount uint32 `protobuf:"varint,8,opt,name=AnswerCount,proto3" json:"AnswerCount,omitempty"`
CorrectCount uint32 `protobuf:"varint,9,opt,name=CorrectCount,proto3" json:"CorrectCount,omitempty"`
ChapterUUID string `protobuf:"bytes,10,opt,name=ChapterUUID,proto3" json:"ChapterUUID,omitempty"`
KnowledgePoints []*KnowledgePointBasicInfo `protobuf:"bytes,11,rep,name=KnowledgePoints,proto3" json:"KnowledgePoints,omitempty"`
}
func (x *QuestionFullInfo) Reset() {
*x = QuestionFullInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QuestionFullInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QuestionFullInfo) ProtoMessage() {}
func (x *QuestionFullInfo) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QuestionFullInfo.ProtoReflect.Descriptor instead.
func (*QuestionFullInfo) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{12}
}
func (x *QuestionFullInfo) GetUUID() string {
if x != nil {
return x.UUID
}
return ""
}
func (x *QuestionFullInfo) GetQuestion() string {
if x != nil {
return x.Question
}
return ""
}
func (x *QuestionFullInfo) GetAnalysis() string {
if x != nil {
return x.Analysis
}
return ""
}
func (x *QuestionFullInfo) GetAnswers() *QuestionAnswers {
if x != nil {
return x.Answers
}
return nil
}
func (x *QuestionFullInfo) GetOptions() *QuestionOptions {
if x != nil {
return x.Options
}
return nil
}
func (x *QuestionFullInfo) GetType() int32 {
if x != nil {
return x.Type
}
return 0
}
func (x *QuestionFullInfo) GetLevel() int32 {
if x != nil {
return x.Level
}
return 0
}
func (x *QuestionFullInfo) GetAnswerCount() uint32 {
if x != nil {
return x.AnswerCount
}
return 0
}
func (x *QuestionFullInfo) GetCorrectCount() uint32 {
if x != nil {
return x.CorrectCount
}
return 0
}
func (x *QuestionFullInfo) GetChapterUUID() string {
if x != nil {
return x.ChapterUUID
}
return ""
}
func (x *QuestionFullInfo) GetKnowledgePoints() []*KnowledgePointBasicInfo {
if x != nil {
return x.KnowledgePoints
}
return nil
}
type QuestionBasicInfoAndAnswer struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Question *QuestionBasicInfo `protobuf:"bytes,1,opt,name=Question,proto3" json:"Question,omitempty"`
Answers *QuestionOptions `protobuf:"bytes,2,opt,name=Answers,proto3" json:"Answers,omitempty"`
}
func (x *QuestionBasicInfoAndAnswer) Reset() {
*x = QuestionBasicInfoAndAnswer{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QuestionBasicInfoAndAnswer) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QuestionBasicInfoAndAnswer) ProtoMessage() {}
func (x *QuestionBasicInfoAndAnswer) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QuestionBasicInfoAndAnswer.ProtoReflect.Descriptor instead.
func (*QuestionBasicInfoAndAnswer) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{13}
}
func (x *QuestionBasicInfoAndAnswer) GetQuestion() *QuestionBasicInfo {
if x != nil {
return x.Question
}
return nil
}
func (x *QuestionBasicInfoAndAnswer) GetAnswers() *QuestionOptions {
if x != nil {
return x.Answers
}
return nil
}
type QuestionAnswers struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
AnswerA string `protobuf:"bytes,1,opt,name=AnswerA,proto3" json:"AnswerA,omitempty"`
AnswerB string `protobuf:"bytes,2,opt,name=AnswerB,proto3" json:"AnswerB,omitempty"`
AnswerC string `protobuf:"bytes,3,opt,name=AnswerC,proto3" json:"AnswerC,omitempty"`
AnswerD string `protobuf:"bytes,4,opt,name=AnswerD,proto3" json:"AnswerD,omitempty"`
AnswerE string `protobuf:"bytes,5,opt,name=AnswerE,proto3" json:"AnswerE,omitempty"`
AnswerF string `protobuf:"bytes,6,opt,name=AnswerF,proto3" json:"AnswerF,omitempty"`
AnswerG string `protobuf:"bytes,7,opt,name=AnswerG,proto3" json:"AnswerG,omitempty"`
AnswerH string `protobuf:"bytes,8,opt,name=AnswerH,proto3" json:"AnswerH,omitempty"`
}
func (x *QuestionAnswers) Reset() {
*x = QuestionAnswers{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QuestionAnswers) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QuestionAnswers) ProtoMessage() {}
func (x *QuestionAnswers) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QuestionAnswers.ProtoReflect.Descriptor instead.
func (*QuestionAnswers) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{14}
}
func (x *QuestionAnswers) GetAnswerA() string {
if x != nil {
return x.AnswerA
}
return ""
}
func (x *QuestionAnswers) GetAnswerB() string {
if x != nil {
return x.AnswerB
}
return ""
}
func (x *QuestionAnswers) GetAnswerC() string {
if x != nil {
return x.AnswerC
}
return ""
}
func (x *QuestionAnswers) GetAnswerD() string {
if x != nil {
return x.AnswerD
}
return ""
}
func (x *QuestionAnswers) GetAnswerE() string {
if x != nil {
return x.AnswerE
}
return ""
}
func (x *QuestionAnswers) GetAnswerF() string {
if x != nil {
return x.AnswerF
}
return ""
}
func (x *QuestionAnswers) GetAnswerG() string {
if x != nil {
return x.AnswerG
}
return ""
}
func (x *QuestionAnswers) GetAnswerH() string {
if x != nil {
return x.AnswerH
}
return ""
}
type QuestionOptions struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
IsA bool `protobuf:"varint,1,opt,name=IsA,proto3" json:"IsA,omitempty"`
IsB bool `protobuf:"varint,2,opt,name=IsB,proto3" json:"IsB,omitempty"`
IsC bool `protobuf:"varint,3,opt,name=IsC,proto3" json:"IsC,omitempty"`
IsD bool `protobuf:"varint,4,opt,name=IsD,proto3" json:"IsD,omitempty"`
IsE bool `protobuf:"varint,5,opt,name=IsE,proto3" json:"IsE,omitempty"`
IsF bool `protobuf:"varint,6,opt,name=IsF,proto3" json:"IsF,omitempty"`
IsG bool `protobuf:"varint,7,opt,name=IsG,proto3" json:"IsG,omitempty"`
IsH bool `protobuf:"varint,8,opt,name=IsH,proto3" json:"IsH,omitempty"`
IsTrue bool `protobuf:"varint,9,opt,name=IsTrue,proto3" json:"IsTrue,omitempty"`
}
func (x *QuestionOptions) Reset() {
*x = QuestionOptions{}
if protoimpl.UnsafeEnabled {
mi := &file_questionResponse_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QuestionOptions) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QuestionOptions) ProtoMessage() {}
func (x *QuestionOptions) ProtoReflect() protoreflect.Message {
mi := &file_questionResponse_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QuestionOptions.ProtoReflect.Descriptor instead.
func (*QuestionOptions) Descriptor() ([]byte, []int) {
return file_questionResponse_proto_rawDescGZIP(), []int{15}
}
func (x *QuestionOptions) GetIsA() bool {
if x != nil {
return x.IsA
}
return false
}
func (x *QuestionOptions) GetIsB() bool {
if x != nil {
return x.IsB
}
return false
}
func (x *QuestionOptions) GetIsC() bool {
if x != nil {
return x.IsC
}
return false
}
func (x *QuestionOptions) GetIsD() bool {
if x != nil {
return x.IsD
}
return false
}
func (x *QuestionOptions) GetIsE() bool {
if x != nil {
return x.IsE
}
return false
}
func (x *QuestionOptions) GetIsF() bool {
if x != nil {
return x.IsF
}
return false
}
func (x *QuestionOptions) GetIsG() bool {
if x != nil {
return x.IsG
}
return false
}
func (x *QuestionOptions) GetIsH() bool {
if x != nil {
return x.IsH
}
return false
}
func (x *QuestionOptions) GetIsTrue() bool {
if x != nil {
return x.IsTrue
}
return false
}
var File_questionResponse_proto protoreflect.FileDescriptor
var file_questionResponse_proto_rawDesc = []byte{
0x0a, 0x16, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x1a, 0x0c, 0x67, 0x6c,
0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x77, 0x0a, 0x14, 0x47, 0x65,
0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x12, 0x33, 0x0a, 0x09, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74,
0x69, 0x6f, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x51, 0x75,
0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x22, 0x7e, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x46, 0x75, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x09, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73,
0x74, 0x69, 0x6f, 0x6e, 0x46, 0x75, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x51, 0x75,
0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x22, 0x77, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74,
0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x09,
0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x14, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x72,
0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x12, 0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x8c, 0x01, 0x0a,
0x20, 0x4c, 0x69, 0x73, 0x74, 0x57, 0x72, 0x6f, 0x6e, 0x67, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69,
0x6f, 0x6e, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x12, 0x3c, 0x0a, 0x09, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69,
0x6f, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x41, 0x6e, 0x64, 0x41, 0x6e,
0x73, 0x77, 0x65, 0x72, 0x52, 0x09, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x20,
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x51,
0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x12, 0x33, 0x0a, 0x09, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f,
0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x51, 0x75, 0x65, 0x73,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x22, 0x58, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x73, 0x74,
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x55,
0x55, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44, 0x12,
0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x44, 0x0a, 0x16, 0x55,
0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x22, 0x44, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x51, 0x75, 0x65, 0x73, 0x74,
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x62,
0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x44, 0x0a, 0x16, 0x41, 0x6e, 0x73, 0x77, 0x65,
0x72, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x12, 0x2a, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x9d, 0x02,
0x0a, 0x12, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x74, 0x74, 0x6c, 0x65,
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x55, 0x55, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x51, 0x75, 0x65, 0x73,
0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x51, 0x75, 0x65, 0x73,
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01,
0x28, 0x05, 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x4c, 0x65, 0x76, 0x65,
0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20,
0x0a, 0x0b, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20,
0x01, 0x28, 0x05, 0x52, 0x0b, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x12, 0x22, 0x0a, 0x0c, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x43,
0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x55,
0x55, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x68, 0x61, 0x70, 0x74,
0x65, 0x72, 0x55, 0x55, 0x49, 0x44, 0x12, 0x45, 0x0a, 0x0f, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
0x64, 0x67, 0x65, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x50, 0x6f,
0x69, 0x6e, 0x74, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0f, 0x4b, 0x6e,
0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0xd1, 0x01,
0x0a, 0x11, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49,
0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x55, 0x55, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x51, 0x75, 0x65, 0x73, 0x74,
0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x51, 0x75, 0x65, 0x73, 0x74,
0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x12,
0x2d, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e,
0x73, 0x77, 0x65, 0x72, 0x73, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x12, 0x2d,
0x0a, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x13, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74,
0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x12, 0x0a,
0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x54, 0x79, 0x70,
0x65, 0x22, 0xce, 0x02, 0x0a, 0x10, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f,
0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x55, 0x55, 0x49, 0x44, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x51, 0x75,
0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x51, 0x75,
0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73,
0x69, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73,
0x69, 0x73, 0x12, 0x2d, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f,
0x6e, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72,
0x73, 0x12, 0x2d, 0x0a, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e,
0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04,
0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x16, 0x20,
0x01, 0x28, 0x05, 0x52, 0x05, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x6e,
0x73, 0x77, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x0b, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x22, 0x0a, 0x0c,
0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x18, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0c, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x12, 0x20, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x55, 0x55, 0x49, 0x44, 0x18,
0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x55, 0x55,
0x49, 0x44, 0x22, 0x95, 0x03, 0x0a, 0x10, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x46,
0x75, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x55, 0x55, 0x49, 0x44, 0x18,
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x51,
0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x51,
0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79,
0x73, 0x69, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79,
0x73, 0x69, 0x73, 0x12, 0x2d, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69,
0x6f, 0x6e, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65,
0x72, 0x73, 0x12, 0x2d, 0x0a, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f,
0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52,
0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x07,
0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x41,
0x6e, 0x73, 0x77, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x0b, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x22, 0x0a,
0x0c, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x09, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x0c, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e,
0x74, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x55, 0x55, 0x49, 0x44,
0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x55,
0x55, 0x49, 0x44, 0x12, 0x45, 0x0a, 0x0f, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65,
0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x70,
0x62, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x50, 0x6f, 0x69, 0x6e, 0x74,
0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0f, 0x4b, 0x6e, 0x6f, 0x77, 0x6c,
0x65, 0x64, 0x67, 0x65, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x7e, 0x0a, 0x1a, 0x51, 0x75,
0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x41,
0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12, 0x31, 0x0a, 0x08, 0x51, 0x75, 0x65, 0x73,
0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e,
0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x66,
0x6f, 0x52, 0x08, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x07, 0x41,
0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70,
0x62, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x22, 0xe1, 0x01, 0x0a, 0x0f, 0x51,
0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x12, 0x18,
0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x41, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x41, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77,
0x65, 0x72, 0x42, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65,
0x72, 0x42, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x43, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x43, 0x12, 0x18, 0x0a, 0x07,
0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41,
0x6e, 0x73, 0x77, 0x65, 0x72, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72,
0x45, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x45,
0x12, 0x18, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x46, 0x18, 0x06, 0x20, 0x01, 0x28,
0x09, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x46, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x6e,
0x73, 0x77, 0x65, 0x72, 0x47, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x6e, 0x73,
0x77, 0x65, 0x72, 0x47, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x48, 0x18,
0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x48, 0x22, 0xb9,
0x01, 0x0a, 0x0f, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x49, 0x73, 0x41, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
0x03, 0x49, 0x73, 0x41, 0x12, 0x10, 0x0a, 0x03, 0x49, 0x73, 0x42, 0x18, 0x02, 0x20, 0x01, 0x28,
0x08, 0x52, 0x03, 0x49, 0x73, 0x42, 0x12, 0x10, 0x0a, 0x03, 0x49, 0x73, 0x43, 0x18, 0x03, 0x20,
0x01, 0x28, 0x08, 0x52, 0x03, 0x49, 0x73, 0x43, 0x12, 0x10, 0x0a, 0x03, 0x49, 0x73, 0x44, 0x18,
0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x49, 0x73, 0x44, 0x12, 0x10, 0x0a, 0x03, 0x49, 0x73,
0x45, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x49, 0x73, 0x45, 0x12, 0x10, 0x0a, 0x03,
0x49, 0x73, 0x46, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x49, 0x73, 0x46, 0x12, 0x10,
0x0a, 0x03, 0x49, 0x73, 0x47, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x49, 0x73, 0x47,
0x12, 0x10, 0x0a, 0x03, 0x49, 0x73, 0x48, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x49,
0x73, 0x48, 0x12, 0x16, 0x0a, 0x06, 0x49, 0x73, 0x54, 0x72, 0x75, 0x65, 0x18, 0x09, 0x20, 0x01,
0x28, 0x08, 0x52, 0x06, 0x49, 0x73, 0x54, 0x72, 0x75, 0x65, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b,
0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_questionResponse_proto_rawDescOnce sync.Once
file_questionResponse_proto_rawDescData = file_questionResponse_proto_rawDesc
)
func file_questionResponse_proto_rawDescGZIP() []byte {
file_questionResponse_proto_rawDescOnce.Do(func() {
file_questionResponse_proto_rawDescData = protoimpl.X.CompressGZIP(file_questionResponse_proto_rawDescData)
})
return file_questionResponse_proto_rawDescData
}
var file_questionResponse_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
var file_questionResponse_proto_goTypes = []interface{}{
(*GetQuestionsResponse)(nil), // 0: pb.GetQuestionsResponse
(*GetQuestionsFullInfoResponse)(nil), // 1: pb.GetQuestionsFullInfoResponse
(*ListQuestionsResponse)(nil), // 2: pb.ListQuestionsResponse
(*ListWrongQuestionAnswersResponse)(nil), // 3: pb.ListWrongQuestionAnswersResponse
(*ListRecommendedQuestionsResponse)(nil), // 4: pb.ListRecommendedQuestionsResponse
(*CreateQuestionResponse)(nil), // 5: pb.CreateQuestionResponse
(*UpdateQuestionResponse)(nil), // 6: pb.UpdateQuestionResponse
(*DeleteQuestionResponse)(nil), // 7: pb.DeleteQuestionResponse
(*AnswerQuestionResponse)(nil), // 8: pb.AnswerQuestionResponse
(*QuestionLittleInfo)(nil), // 9: pb.QuestionLittleInfo
(*QuestionBasicInfo)(nil), // 10: pb.QuestionBasicInfo
(*QuestionMoreInfo)(nil), // 11: pb.QuestionMoreInfo
(*QuestionFullInfo)(nil), // 12: pb.QuestionFullInfo
(*QuestionBasicInfoAndAnswer)(nil), // 13: pb.QuestionBasicInfoAndAnswer
(*QuestionAnswers)(nil), // 14: pb.QuestionAnswers
(*QuestionOptions)(nil), // 15: pb.QuestionOptions
(*ResponseStatus)(nil), // 16: pb.ResponseStatus
(*KnowledgePointBasicInfo)(nil), // 17: pb.KnowledgePointBasicInfo
}
var file_questionResponse_proto_depIdxs = []int32{
10, // 0: pb.GetQuestionsResponse.Questions:type_name -> pb.QuestionBasicInfo
16, // 1: pb.GetQuestionsResponse.Status:type_name -> pb.ResponseStatus
12, // 2: pb.GetQuestionsFullInfoResponse.Questions:type_name -> pb.QuestionFullInfo
16, // 3: pb.GetQuestionsFullInfoResponse.Status:type_name -> pb.ResponseStatus
11, // 4: pb.ListQuestionsResponse.Questions:type_name -> pb.QuestionMoreInfo
16, // 5: pb.ListQuestionsResponse.Status:type_name -> pb.ResponseStatus
13, // 6: pb.ListWrongQuestionAnswersResponse.Questions:type_name -> pb.QuestionBasicInfoAndAnswer
16, // 7: pb.ListWrongQuestionAnswersResponse.Status:type_name -> pb.ResponseStatus
10, // 8: pb.ListRecommendedQuestionsResponse.Questions:type_name -> pb.QuestionBasicInfo
16, // 9: pb.ListRecommendedQuestionsResponse.Status:type_name -> pb.ResponseStatus
16, // 10: pb.CreateQuestionResponse.Status:type_name -> pb.ResponseStatus
16, // 11: pb.UpdateQuestionResponse.Status:type_name -> pb.ResponseStatus
16, // 12: pb.DeleteQuestionResponse.Status:type_name -> pb.ResponseStatus
16, // 13: pb.AnswerQuestionResponse.Status:type_name -> pb.ResponseStatus
17, // 14: pb.QuestionLittleInfo.KnowledgePoints:type_name -> pb.KnowledgePointBasicInfo
14, // 15: pb.QuestionBasicInfo.Answers:type_name -> pb.QuestionAnswers
15, // 16: pb.QuestionBasicInfo.Options:type_name -> pb.QuestionOptions
14, // 17: pb.QuestionMoreInfo.Answers:type_name -> pb.QuestionAnswers
15, // 18: pb.QuestionMoreInfo.Options:type_name -> pb.QuestionOptions
14, // 19: pb.QuestionFullInfo.Answers:type_name -> pb.QuestionAnswers
15, // 20: pb.QuestionFullInfo.Options:type_name -> pb.QuestionOptions
17, // 21: pb.QuestionFullInfo.KnowledgePoints:type_name -> pb.KnowledgePointBasicInfo
10, // 22: pb.QuestionBasicInfoAndAnswer.Question:type_name -> pb.QuestionBasicInfo
15, // 23: pb.QuestionBasicInfoAndAnswer.Answers:type_name -> pb.QuestionOptions
24, // [24:24] is the sub-list for method output_type
24, // [24:24] is the sub-list for method input_type
24, // [24:24] is the sub-list for extension type_name
24, // [24:24] is the sub-list for extension extendee
0, // [0:24] is the sub-list for field type_name
}
func init() { file_questionResponse_proto_init() }
func file_questionResponse_proto_init() {
if File_questionResponse_proto != nil {
return
}
file_global_proto_init()
if !protoimpl.UnsafeEnabled {
file_questionResponse_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetQuestionsResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetQuestionsFullInfoResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListQuestionsResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListWrongQuestionAnswersResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListRecommendedQuestionsResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateQuestionResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UpdateQuestionResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeleteQuestionResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AnswerQuestionResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuestionLittleInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuestionBasicInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuestionMoreInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuestionFullInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuestionBasicInfoAndAnswer); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuestionAnswers); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_questionResponse_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuestionOptions); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_questionResponse_proto_rawDesc,
NumEnums: 0,
NumMessages: 16,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_questionResponse_proto_goTypes,
DependencyIndexes: file_questionResponse_proto_depIdxs,
MessageInfos: file_questionResponse_proto_msgTypes,
}.Build()
File_questionResponse_proto = out.File
file_questionResponse_proto_rawDesc = nil
file_questionResponse_proto_goTypes = nil
file_questionResponse_proto_depIdxs = nil
}
1
https://gitee.com/WisdomClassroom/core.git
git@gitee.com:WisdomClassroom/core.git
WisdomClassroom
core
core
v0.7.6

Search