// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// 	protoc-gen-go v1.35.2
// 	protoc        v5.28.3
// source: FriendAddReqListNotice.proto

package workphone

import (
	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)
)

type FriendReqMessage struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	FriendId   string     `protobuf:"bytes,1,opt,name=FriendId,proto3" json:"FriendId,omitempty"` // 请求好友微信内部全局唯一识别码
	FriendNo   string     `protobuf:"bytes,2,opt,name=FriendNo,proto3" json:"FriendNo,omitempty"`
	FriendNick string     `protobuf:"bytes,3,opt,name=FriendNick,proto3" json:"FriendNick,omitempty"`                                  // 好友的微信昵称
	Avatar     string     `protobuf:"bytes,4,opt,name=Avatar,proto3" json:"Avatar,omitempty"`                                          //微信头像
	Reason     string     `protobuf:"bytes,5,opt,name=Reason,proto3" json:"Reason,omitempty"`                                          // 招呼语
	Gender     EnumGender `protobuf:"varint,6,opt,name=Gender,proto3,enum=Jubo.JuLiao.IM.Wx.Proto.EnumGender" json:"Gender,omitempty"` //性别
	Province   string     `protobuf:"bytes,7,opt,name=Province,proto3" json:"Province,omitempty"`                                      //省份 (国家用不上)
	City       string     `protobuf:"bytes,8,opt,name=City,proto3" json:"City,omitempty"`                                              //城市
	Source     int32      `protobuf:"varint,9,opt,name=Source,proto3" json:"Source,omitempty"`                                         // 来源 (17: 名片分享)
	SourceUser string     `protobuf:"bytes,10,opt,name=SourceUser,proto3" json:"SourceUser,omitempty"`                                 // 来源的微信id(推荐人,群聊房间号)
	ReqTime    int64      `protobuf:"varint,11,opt,name=ReqTime,proto3" json:"ReqTime,omitempty"`                                      //最后请求的时间
	State      int32      `protobuf:"varint,12,opt,name=State,proto3" json:"State,omitempty"`                                          // 状态,0 未添加,1 已添加
	FirstReq   int64      `protobuf:"varint,13,opt,name=FirstReq,proto3" json:"FirstReq,omitempty"`                                    // 第一次发送请求的时间
}

func (x *FriendReqMessage) Reset() {
	*x = FriendReqMessage{}
	mi := &file_FriendAddReqListNotice_proto_msgTypes[0]
	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
	ms.StoreMessageInfo(mi)
}

func (x *FriendReqMessage) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*FriendReqMessage) ProtoMessage() {}

func (x *FriendReqMessage) ProtoReflect() protoreflect.Message {
	mi := &file_FriendAddReqListNotice_proto_msgTypes[0]
	if x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use FriendReqMessage.ProtoReflect.Descriptor instead.
func (*FriendReqMessage) Descriptor() ([]byte, []int) {
	return file_FriendAddReqListNotice_proto_rawDescGZIP(), []int{0}
}

func (x *FriendReqMessage) GetFriendId() string {
	if x != nil {
		return x.FriendId
	}
	return ""
}

func (x *FriendReqMessage) GetFriendNo() string {
	if x != nil {
		return x.FriendNo
	}
	return ""
}

func (x *FriendReqMessage) GetFriendNick() string {
	if x != nil {
		return x.FriendNick
	}
	return ""
}

func (x *FriendReqMessage) GetAvatar() string {
	if x != nil {
		return x.Avatar
	}
	return ""
}

func (x *FriendReqMessage) GetReason() string {
	if x != nil {
		return x.Reason
	}
	return ""
}

func (x *FriendReqMessage) GetGender() EnumGender {
	if x != nil {
		return x.Gender
	}
	return EnumGender_UnknownGender
}

func (x *FriendReqMessage) GetProvince() string {
	if x != nil {
		return x.Province
	}
	return ""
}

func (x *FriendReqMessage) GetCity() string {
	if x != nil {
		return x.City
	}
	return ""
}

func (x *FriendReqMessage) GetSource() int32 {
	if x != nil {
		return x.Source
	}
	return 0
}

func (x *FriendReqMessage) GetSourceUser() string {
	if x != nil {
		return x.SourceUser
	}
	return ""
}

func (x *FriendReqMessage) GetReqTime() int64 {
	if x != nil {
		return x.ReqTime
	}
	return 0
}

func (x *FriendReqMessage) GetState() int32 {
	if x != nil {
		return x.State
	}
	return 0
}

func (x *FriendReqMessage) GetFirstReq() int64 {
	if x != nil {
		return x.FirstReq
	}
	return 0
}

type FriendAddReqListNoticeMessage struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	WeChatId string              `protobuf:"bytes,1,opt,name=WeChatId,proto3" json:"WeChatId,omitempty"` // 商家个人微信内部全局唯一识别码
	Requests []*FriendReqMessage `protobuf:"bytes,2,rep,name=Requests,proto3" json:"Requests,omitempty"` // 请求列表,只包含未通过的请求,时间不限,多次消息来往只上传一条
}

func (x *FriendAddReqListNoticeMessage) Reset() {
	*x = FriendAddReqListNoticeMessage{}
	mi := &file_FriendAddReqListNotice_proto_msgTypes[1]
	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
	ms.StoreMessageInfo(mi)
}

func (x *FriendAddReqListNoticeMessage) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*FriendAddReqListNoticeMessage) ProtoMessage() {}

func (x *FriendAddReqListNoticeMessage) ProtoReflect() protoreflect.Message {
	mi := &file_FriendAddReqListNotice_proto_msgTypes[1]
	if x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use FriendAddReqListNoticeMessage.ProtoReflect.Descriptor instead.
func (*FriendAddReqListNoticeMessage) Descriptor() ([]byte, []int) {
	return file_FriendAddReqListNotice_proto_rawDescGZIP(), []int{1}
}

func (x *FriendAddReqListNoticeMessage) GetWeChatId() string {
	if x != nil {
		return x.WeChatId
	}
	return ""
}

func (x *FriendAddReqListNoticeMessage) GetRequests() []*FriendReqMessage {
	if x != nil {
		return x.Requests
	}
	return nil
}

var File_FriendAddReqListNotice_proto protoreflect.FileDescriptor

var file_FriendAddReqListNotice_proto_rawDesc = []byte{
	0x0a, 0x1c, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x4c, 0x69,
	0x73, 0x74, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x17,
	0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57,
	0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f,
	0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
	0x8b, 0x03, 0x0a, 0x10, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x4d, 0x65, 0x73,
	0x73, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x49, 0x64,
	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x49, 0x64,
	0x12, 0x1a, 0x0a, 0x08, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4e, 0x6f, 0x18, 0x02, 0x20, 0x01,
	0x28, 0x09, 0x52, 0x08, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4e, 0x6f, 0x12, 0x1e, 0x0a, 0x0a,
	0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4e, 0x69, 0x63, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
	0x52, 0x0a, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4e, 0x69, 0x63, 0x6b, 0x12, 0x16, 0x0a, 0x06,
	0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x41, 0x76,
	0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x05,
	0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x06,
	0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x4a,
	0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57, 0x78,
	0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x47, 0x65, 0x6e, 0x64, 0x65,
	0x72, 0x52, 0x06, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x50, 0x72, 0x6f,
	0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x50, 0x72, 0x6f,
	0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x43, 0x69, 0x74, 0x79, 0x18, 0x08, 0x20,
	0x01, 0x28, 0x09, 0x52, 0x04, 0x43, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x6f, 0x75,
	0x72, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x53, 0x6f, 0x75, 0x72, 0x63,
	0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x18,
	0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x55, 0x73, 0x65,
	0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01,
	0x28, 0x03, 0x52, 0x07, 0x52, 0x65, 0x71, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x53,
	0x74, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x53, 0x74, 0x61, 0x74,
	0x65, 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x69, 0x72, 0x73, 0x74, 0x52, 0x65, 0x71, 0x18, 0x0d, 0x20,
	0x01, 0x28, 0x03, 0x52, 0x08, 0x46, 0x69, 0x72, 0x73, 0x74, 0x52, 0x65, 0x71, 0x22, 0x82, 0x01,
	0x0a, 0x1d, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x4c, 0x69,
	0x73, 0x74, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
	0x1a, 0x0a, 0x08, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
	0x09, 0x52, 0x08, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x08, 0x52,
	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e,
	0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57,
	0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x52, 0x65,
	0x71, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x08, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
	0x74, 0x73, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x70, 0x68, 0x6f, 0x6e,
	0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}

var (
	file_FriendAddReqListNotice_proto_rawDescOnce sync.Once
	file_FriendAddReqListNotice_proto_rawDescData = file_FriendAddReqListNotice_proto_rawDesc
)

func file_FriendAddReqListNotice_proto_rawDescGZIP() []byte {
	file_FriendAddReqListNotice_proto_rawDescOnce.Do(func() {
		file_FriendAddReqListNotice_proto_rawDescData = protoimpl.X.CompressGZIP(file_FriendAddReqListNotice_proto_rawDescData)
	})
	return file_FriendAddReqListNotice_proto_rawDescData
}

var file_FriendAddReqListNotice_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_FriendAddReqListNotice_proto_goTypes = []any{
	(*FriendReqMessage)(nil),              // 0: Jubo.JuLiao.IM.Wx.Proto.FriendReqMessage
	(*FriendAddReqListNoticeMessage)(nil), // 1: Jubo.JuLiao.IM.Wx.Proto.FriendAddReqListNoticeMessage
	(EnumGender)(0),                       // 2: Jubo.JuLiao.IM.Wx.Proto.EnumGender
}
var file_FriendAddReqListNotice_proto_depIdxs = []int32{
	2, // 0: Jubo.JuLiao.IM.Wx.Proto.FriendReqMessage.Gender:type_name -> Jubo.JuLiao.IM.Wx.Proto.EnumGender
	0, // 1: Jubo.JuLiao.IM.Wx.Proto.FriendAddReqListNoticeMessage.Requests:type_name -> Jubo.JuLiao.IM.Wx.Proto.FriendReqMessage
	2, // [2:2] is the sub-list for method output_type
	2, // [2:2] is the sub-list for method input_type
	2, // [2:2] is the sub-list for extension type_name
	2, // [2:2] is the sub-list for extension extendee
	0, // [0:2] is the sub-list for field type_name
}

func init() { file_FriendAddReqListNotice_proto_init() }
func file_FriendAddReqListNotice_proto_init() {
	if File_FriendAddReqListNotice_proto != nil {
		return
	}
	file_TransportMessage_proto_init()
	type x struct{}
	out := protoimpl.TypeBuilder{
		File: protoimpl.DescBuilder{
			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
			RawDescriptor: file_FriendAddReqListNotice_proto_rawDesc,
			NumEnums:      0,
			NumMessages:   2,
			NumExtensions: 0,
			NumServices:   0,
		},
		GoTypes:           file_FriendAddReqListNotice_proto_goTypes,
		DependencyIndexes: file_FriendAddReqListNotice_proto_depIdxs,
		MessageInfos:      file_FriendAddReqListNotice_proto_msgTypes,
	}.Build()
	File_FriendAddReqListNotice_proto = out.File
	file_FriendAddReqListNotice_proto_rawDesc = nil
	file_FriendAddReqListNotice_proto_goTypes = nil
	file_FriendAddReqListNotice_proto_depIdxs = nil
}