// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 // protoc v5.29.2 // source: proto/events/room/v1/events.proto package roomeventsv1 import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" unsafe "unsafe" ) 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) ) // EventEnvelope 是 room-service outbox 的统一事件外壳。 // body 保存具体事件消息序列化后的二进制,event_type 负责告诉消费者如何解码。 type EventEnvelope struct { state protoimpl.MessageState `protogen:"open.v1"` EventId string `protobuf:"bytes,1,opt,name=event_id,json=eventId,proto3" json:"event_id,omitempty"` RoomId string `protobuf:"bytes,2,opt,name=room_id,json=roomId,proto3" json:"room_id,omitempty"` EventType string `protobuf:"bytes,3,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"` RoomVersion int64 `protobuf:"varint,4,opt,name=room_version,json=roomVersion,proto3" json:"room_version,omitempty"` OccurredAtMs int64 `protobuf:"varint,5,opt,name=occurred_at_ms,json=occurredAtMs,proto3" json:"occurred_at_ms,omitempty"` Body []byte `protobuf:"bytes,6,opt,name=body,proto3" json:"body,omitempty"` AppCode string `protobuf:"bytes,7,opt,name=app_code,json=appCode,proto3" json:"app_code,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *EventEnvelope) Reset() { *x = EventEnvelope{} mi := &file_proto_events_room_v1_events_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *EventEnvelope) String() string { return protoimpl.X.MessageStringOf(x) } func (*EventEnvelope) ProtoMessage() {} func (x *EventEnvelope) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_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 EventEnvelope.ProtoReflect.Descriptor instead. func (*EventEnvelope) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{0} } func (x *EventEnvelope) GetEventId() string { if x != nil { return x.EventId } return "" } func (x *EventEnvelope) GetRoomId() string { if x != nil { return x.RoomId } return "" } func (x *EventEnvelope) GetEventType() string { if x != nil { return x.EventType } return "" } func (x *EventEnvelope) GetRoomVersion() int64 { if x != nil { return x.RoomVersion } return 0 } func (x *EventEnvelope) GetOccurredAtMs() int64 { if x != nil { return x.OccurredAtMs } return 0 } func (x *EventEnvelope) GetBody() []byte { if x != nil { return x.Body } return nil } func (x *EventEnvelope) GetAppCode() string { if x != nil { return x.AppCode } return "" } // RoomCreated 表达房间第一次建立成功。 type RoomCreated struct { state protoimpl.MessageState `protogen:"open.v1"` OwnerUserId int64 `protobuf:"varint,1,opt,name=owner_user_id,json=ownerUserId,proto3" json:"owner_user_id,omitempty"` SeatCount int32 `protobuf:"varint,3,opt,name=seat_count,json=seatCount,proto3" json:"seat_count,omitempty"` Mode string `protobuf:"bytes,4,opt,name=mode,proto3" json:"mode,omitempty"` // room_name/room_avatar/room_description 是创建时确定的展示资料快照,消费者不需要反查 room-service。 RoomName string `protobuf:"bytes,5,opt,name=room_name,json=roomName,proto3" json:"room_name,omitempty"` RoomAvatar string `protobuf:"bytes,6,opt,name=room_avatar,json=roomAvatar,proto3" json:"room_avatar,omitempty"` RoomDescription string `protobuf:"bytes,7,opt,name=room_description,json=roomDescription,proto3" json:"room_description,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomCreated) Reset() { *x = RoomCreated{} mi := &file_proto_events_room_v1_events_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomCreated) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomCreated) ProtoMessage() {} func (x *RoomCreated) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_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 RoomCreated.ProtoReflect.Descriptor instead. func (*RoomCreated) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{1} } func (x *RoomCreated) GetOwnerUserId() int64 { if x != nil { return x.OwnerUserId } return 0 } func (x *RoomCreated) GetSeatCount() int32 { if x != nil { return x.SeatCount } return 0 } func (x *RoomCreated) GetMode() string { if x != nil { return x.Mode } return "" } func (x *RoomCreated) GetRoomName() string { if x != nil { return x.RoomName } return "" } func (x *RoomCreated) GetRoomAvatar() string { if x != nil { return x.RoomAvatar } return "" } func (x *RoomCreated) GetRoomDescription() string { if x != nil { return x.RoomDescription } return "" } // RoomProfileUpdated 表达房间展示资料或麦位数量变更。 type RoomProfileUpdated struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` RoomName string `protobuf:"bytes,2,opt,name=room_name,json=roomName,proto3" json:"room_name,omitempty"` RoomAvatar string `protobuf:"bytes,3,opt,name=room_avatar,json=roomAvatar,proto3" json:"room_avatar,omitempty"` RoomDescription string `protobuf:"bytes,4,opt,name=room_description,json=roomDescription,proto3" json:"room_description,omitempty"` SeatCount int32 `protobuf:"varint,5,opt,name=seat_count,json=seatCount,proto3" json:"seat_count,omitempty"` RoomBackgroundUrl string `protobuf:"bytes,6,opt,name=room_background_url,json=roomBackgroundUrl,proto3" json:"room_background_url,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomProfileUpdated) Reset() { *x = RoomProfileUpdated{} mi := &file_proto_events_room_v1_events_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomProfileUpdated) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomProfileUpdated) ProtoMessage() {} func (x *RoomProfileUpdated) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[2] 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 RoomProfileUpdated.ProtoReflect.Descriptor instead. func (*RoomProfileUpdated) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{2} } func (x *RoomProfileUpdated) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomProfileUpdated) GetRoomName() string { if x != nil { return x.RoomName } return "" } func (x *RoomProfileUpdated) GetRoomAvatar() string { if x != nil { return x.RoomAvatar } return "" } func (x *RoomProfileUpdated) GetRoomDescription() string { if x != nil { return x.RoomDescription } return "" } func (x *RoomProfileUpdated) GetSeatCount() int32 { if x != nil { return x.SeatCount } return 0 } func (x *RoomProfileUpdated) GetRoomBackgroundUrl() string { if x != nil { return x.RoomBackgroundUrl } return "" } // RoomBackgroundChanged 表达房主切换当前房间背景图。 type RoomBackgroundChanged struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` BackgroundId int64 `protobuf:"varint,2,opt,name=background_id,json=backgroundId,proto3" json:"background_id,omitempty"` RoomBackgroundUrl string `protobuf:"bytes,3,opt,name=room_background_url,json=roomBackgroundUrl,proto3" json:"room_background_url,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomBackgroundChanged) Reset() { *x = RoomBackgroundChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomBackgroundChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomBackgroundChanged) ProtoMessage() {} func (x *RoomBackgroundChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[3] 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 RoomBackgroundChanged.ProtoReflect.Descriptor instead. func (*RoomBackgroundChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{3} } func (x *RoomBackgroundChanged) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomBackgroundChanged) GetBackgroundId() int64 { if x != nil { return x.BackgroundId } return 0 } func (x *RoomBackgroundChanged) GetRoomBackgroundUrl() string { if x != nil { return x.RoomBackgroundUrl } return "" } // RoomUserJoined 表达用户业务态进房成功。 type RoomEntryVehicleSnapshot struct { state protoimpl.MessageState `protogen:"open.v1"` ResourceId int64 `protobuf:"varint,1,opt,name=resource_id,json=resourceId,proto3" json:"resource_id,omitempty"` ResourceCode string `protobuf:"bytes,2,opt,name=resource_code,json=resourceCode,proto3" json:"resource_code,omitempty"` Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` AssetUrl string `protobuf:"bytes,4,opt,name=asset_url,json=assetUrl,proto3" json:"asset_url,omitempty"` PreviewUrl string `protobuf:"bytes,5,opt,name=preview_url,json=previewUrl,proto3" json:"preview_url,omitempty"` AnimationUrl string `protobuf:"bytes,6,opt,name=animation_url,json=animationUrl,proto3" json:"animation_url,omitempty"` MetadataJson string `protobuf:"bytes,7,opt,name=metadata_json,json=metadataJson,proto3" json:"metadata_json,omitempty"` EntitlementId string `protobuf:"bytes,8,opt,name=entitlement_id,json=entitlementId,proto3" json:"entitlement_id,omitempty"` ExpiresAtMs int64 `protobuf:"varint,9,opt,name=expires_at_ms,json=expiresAtMs,proto3" json:"expires_at_ms,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomEntryVehicleSnapshot) Reset() { *x = RoomEntryVehicleSnapshot{} mi := &file_proto_events_room_v1_events_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomEntryVehicleSnapshot) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomEntryVehicleSnapshot) ProtoMessage() {} func (x *RoomEntryVehicleSnapshot) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[4] 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 RoomEntryVehicleSnapshot.ProtoReflect.Descriptor instead. func (*RoomEntryVehicleSnapshot) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{4} } func (x *RoomEntryVehicleSnapshot) GetResourceId() int64 { if x != nil { return x.ResourceId } return 0 } func (x *RoomEntryVehicleSnapshot) GetResourceCode() string { if x != nil { return x.ResourceCode } return "" } func (x *RoomEntryVehicleSnapshot) GetName() string { if x != nil { return x.Name } return "" } func (x *RoomEntryVehicleSnapshot) GetAssetUrl() string { if x != nil { return x.AssetUrl } return "" } func (x *RoomEntryVehicleSnapshot) GetPreviewUrl() string { if x != nil { return x.PreviewUrl } return "" } func (x *RoomEntryVehicleSnapshot) GetAnimationUrl() string { if x != nil { return x.AnimationUrl } return "" } func (x *RoomEntryVehicleSnapshot) GetMetadataJson() string { if x != nil { return x.MetadataJson } return "" } func (x *RoomEntryVehicleSnapshot) GetEntitlementId() string { if x != nil { return x.EntitlementId } return "" } func (x *RoomEntryVehicleSnapshot) GetExpiresAtMs() int64 { if x != nil { return x.ExpiresAtMs } return 0 } type RoomUserJoined struct { state protoimpl.MessageState `protogen:"open.v1"` UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"` // visible_region_id 是用户进房时所在房间的国家/区域桶,统计服务不能反查 room-service。 VisibleRegionId int64 `protobuf:"varint,3,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` EntryVehicle *RoomEntryVehicleSnapshot `protobuf:"bytes,4,opt,name=entry_vehicle,json=entryVehicle,proto3" json:"entry_vehicle,omitempty"` CountryId int64 `protobuf:"varint,5,opt,name=country_id,json=countryId,proto3" json:"country_id,omitempty"` RegionId int64 `protobuf:"varint,6,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"` // is_robot 标记本次进房来自房间机器人调度,统计服务必须跳过活跃用户口径。 IsRobot bool `protobuf:"varint,7,opt,name=is_robot,json=isRobot,proto3" json:"is_robot,omitempty"` // nickname/avatar/display_user_id 是进房瞬间的展示资料快照,IM 补偿投递不能再临时反查 user-service。 Nickname string `protobuf:"bytes,8,opt,name=nickname,proto3" json:"nickname,omitempty"` Avatar string `protobuf:"bytes,9,opt,name=avatar,proto3" json:"avatar,omitempty"` DisplayUserId string `protobuf:"bytes,10,opt,name=display_user_id,json=displayUserId,proto3" json:"display_user_id,omitempty"` PrettyDisplayUserId string `protobuf:"bytes,11,opt,name=pretty_display_user_id,json=prettyDisplayUserId,proto3" json:"pretty_display_user_id,omitempty"` // VIP 字段来自同一次 GetMyVip effective state,首次进房 outbox 与重复进房 direct IM 必须保持同一语义。 VipProgramType string `protobuf:"bytes,12,opt,name=vip_program_type,json=vipProgramType,proto3" json:"vip_program_type,omitempty"` EffectiveVipLevel int32 `protobuf:"varint,13,opt,name=effective_vip_level,json=effectiveVipLevel,proto3" json:"effective_vip_level,omitempty"` EffectiveVipName string `protobuf:"bytes,14,opt,name=effective_vip_name,json=effectiveVipName,proto3" json:"effective_vip_name,omitempty"` RoomEntryNoticeEnabled bool `protobuf:"varint,15,opt,name=room_entry_notice_enabled,json=roomEntryNoticeEnabled,proto3" json:"room_entry_notice_enabled,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomUserJoined) Reset() { *x = RoomUserJoined{} mi := &file_proto_events_room_v1_events_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomUserJoined) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomUserJoined) ProtoMessage() {} func (x *RoomUserJoined) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[5] 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 RoomUserJoined.ProtoReflect.Descriptor instead. func (*RoomUserJoined) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{5} } func (x *RoomUserJoined) GetUserId() int64 { if x != nil { return x.UserId } return 0 } func (x *RoomUserJoined) GetRole() string { if x != nil { return x.Role } return "" } func (x *RoomUserJoined) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } func (x *RoomUserJoined) GetEntryVehicle() *RoomEntryVehicleSnapshot { if x != nil { return x.EntryVehicle } return nil } func (x *RoomUserJoined) GetCountryId() int64 { if x != nil { return x.CountryId } return 0 } func (x *RoomUserJoined) GetRegionId() int64 { if x != nil { return x.RegionId } return 0 } func (x *RoomUserJoined) GetIsRobot() bool { if x != nil { return x.IsRobot } return false } func (x *RoomUserJoined) GetNickname() string { if x != nil { return x.Nickname } return "" } func (x *RoomUserJoined) GetAvatar() string { if x != nil { return x.Avatar } return "" } func (x *RoomUserJoined) GetDisplayUserId() string { if x != nil { return x.DisplayUserId } return "" } func (x *RoomUserJoined) GetPrettyDisplayUserId() string { if x != nil { return x.PrettyDisplayUserId } return "" } func (x *RoomUserJoined) GetVipProgramType() string { if x != nil { return x.VipProgramType } return "" } func (x *RoomUserJoined) GetEffectiveVipLevel() int32 { if x != nil { return x.EffectiveVipLevel } return 0 } func (x *RoomUserJoined) GetEffectiveVipName() string { if x != nil { return x.EffectiveVipName } return "" } func (x *RoomUserJoined) GetRoomEntryNoticeEnabled() bool { if x != nil { return x.RoomEntryNoticeEnabled } return false } // RoomUserLeft 表达用户离房成功。 type RoomUserLeft struct { state protoimpl.MessageState `protogen:"open.v1"` UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomUserLeft) Reset() { *x = RoomUserLeft{} mi := &file_proto_events_room_v1_events_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomUserLeft) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomUserLeft) ProtoMessage() {} func (x *RoomUserLeft) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[6] 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 RoomUserLeft.ProtoReflect.Descriptor instead. func (*RoomUserLeft) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{6} } func (x *RoomUserLeft) GetUserId() int64 { if x != nil { return x.UserId } return 0 } // RoomClosed 表达房间生命周期关闭完成。 type RoomClosed struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomClosed) Reset() { *x = RoomClosed{} mi := &file_proto_events_room_v1_events_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomClosed) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomClosed) ProtoMessage() {} func (x *RoomClosed) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[7] 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 RoomClosed.ProtoReflect.Descriptor instead. func (*RoomClosed) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{7} } func (x *RoomClosed) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomClosed) GetReason() string { if x != nil { return x.Reason } return "" } // RoomMicChanged 表达任意上下麦和换麦位动作。 type RoomMicChanged struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,2,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` FromSeat int32 `protobuf:"varint,3,opt,name=from_seat,json=fromSeat,proto3" json:"from_seat,omitempty"` ToSeat int32 `protobuf:"varint,4,opt,name=to_seat,json=toSeat,proto3" json:"to_seat,omitempty"` Action string `protobuf:"bytes,5,opt,name=action,proto3" json:"action,omitempty"` // mic_session_id 用于把业务麦位事件和 RTC 发流会话绑定,客户端和 webhook 都必须透传。 MicSessionId string `protobuf:"bytes,6,opt,name=mic_session_id,json=micSessionId,proto3" json:"mic_session_id,omitempty"` // publish_state 透出 pending_publish/publishing/idle,避免把“占麦”和“已发流”混成一个状态。 PublishState string `protobuf:"bytes,7,opt,name=publish_state,json=publishState,proto3" json:"publish_state,omitempty"` // reason 表示系统触发的下麦原因,例如 publish_timeout。 Reason string `protobuf:"bytes,8,opt,name=reason,proto3" json:"reason,omitempty"` PublishDeadlineMs int64 `protobuf:"varint,9,opt,name=publish_deadline_ms,json=publishDeadlineMs,proto3" json:"publish_deadline_ms,omitempty"` PublishEventTimeMs int64 `protobuf:"varint,10,opt,name=publish_event_time_ms,json=publishEventTimeMs,proto3" json:"publish_event_time_ms,omitempty"` MicMuted bool `protobuf:"varint,11,opt,name=mic_muted,json=micMuted,proto3" json:"mic_muted,omitempty"` SeatStatus string `protobuf:"bytes,12,opt,name=seat_status,json=seatStatus,proto3" json:"seat_status,omitempty"` TargetGiftValue int64 `protobuf:"varint,13,opt,name=target_gift_value,json=targetGiftValue,proto3" json:"target_gift_value,omitempty"` // target_* 是目标麦位用户的展示资料快照;它只服务 IM/UI 首帧展示,不参与权限或房态判定。 TargetNickname string `protobuf:"bytes,14,opt,name=target_nickname,json=targetNickname,proto3" json:"target_nickname,omitempty"` TargetAvatar string `protobuf:"bytes,15,opt,name=target_avatar,json=targetAvatar,proto3" json:"target_avatar,omitempty"` TargetDisplayUserId string `protobuf:"bytes,16,opt,name=target_display_user_id,json=targetDisplayUserId,proto3" json:"target_display_user_id,omitempty"` TargetPrettyDisplayUserId string `protobuf:"bytes,17,opt,name=target_pretty_display_user_id,json=targetPrettyDisplayUserId,proto3" json:"target_pretty_display_user_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomMicChanged) Reset() { *x = RoomMicChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomMicChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomMicChanged) ProtoMessage() {} func (x *RoomMicChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[8] 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 RoomMicChanged.ProtoReflect.Descriptor instead. func (*RoomMicChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{8} } func (x *RoomMicChanged) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomMicChanged) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } func (x *RoomMicChanged) GetFromSeat() int32 { if x != nil { return x.FromSeat } return 0 } func (x *RoomMicChanged) GetToSeat() int32 { if x != nil { return x.ToSeat } return 0 } func (x *RoomMicChanged) GetAction() string { if x != nil { return x.Action } return "" } func (x *RoomMicChanged) GetMicSessionId() string { if x != nil { return x.MicSessionId } return "" } func (x *RoomMicChanged) GetPublishState() string { if x != nil { return x.PublishState } return "" } func (x *RoomMicChanged) GetReason() string { if x != nil { return x.Reason } return "" } func (x *RoomMicChanged) GetPublishDeadlineMs() int64 { if x != nil { return x.PublishDeadlineMs } return 0 } func (x *RoomMicChanged) GetPublishEventTimeMs() int64 { if x != nil { return x.PublishEventTimeMs } return 0 } func (x *RoomMicChanged) GetMicMuted() bool { if x != nil { return x.MicMuted } return false } func (x *RoomMicChanged) GetSeatStatus() string { if x != nil { return x.SeatStatus } return "" } func (x *RoomMicChanged) GetTargetGiftValue() int64 { if x != nil { return x.TargetGiftValue } return 0 } func (x *RoomMicChanged) GetTargetNickname() string { if x != nil { return x.TargetNickname } return "" } func (x *RoomMicChanged) GetTargetAvatar() string { if x != nil { return x.TargetAvatar } return "" } func (x *RoomMicChanged) GetTargetDisplayUserId() string { if x != nil { return x.TargetDisplayUserId } return "" } func (x *RoomMicChanged) GetTargetPrettyDisplayUserId() string { if x != nil { return x.TargetPrettyDisplayUserId } return "" } // RoomMicSeatLocked 表达单个麦位锁定状态变更。 type RoomMicSeatLocked struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` SeatNo int32 `protobuf:"varint,2,opt,name=seat_no,json=seatNo,proto3" json:"seat_no,omitempty"` Locked bool `protobuf:"varint,3,opt,name=locked,proto3" json:"locked,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomMicSeatLocked) Reset() { *x = RoomMicSeatLocked{} mi := &file_proto_events_room_v1_events_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomMicSeatLocked) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomMicSeatLocked) ProtoMessage() {} func (x *RoomMicSeatLocked) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[9] 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 RoomMicSeatLocked.ProtoReflect.Descriptor instead. func (*RoomMicSeatLocked) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{9} } func (x *RoomMicSeatLocked) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomMicSeatLocked) GetSeatNo() int32 { if x != nil { return x.SeatNo } return 0 } func (x *RoomMicSeatLocked) GetLocked() bool { if x != nil { return x.Locked } return false } // RoomChatEnabledChanged 表达公屏开关状态变更。 type RoomChatEnabledChanged struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomChatEnabledChanged) Reset() { *x = RoomChatEnabledChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomChatEnabledChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomChatEnabledChanged) ProtoMessage() {} func (x *RoomChatEnabledChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[10] 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 RoomChatEnabledChanged.ProtoReflect.Descriptor instead. func (*RoomChatEnabledChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{10} } func (x *RoomChatEnabledChanged) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomChatEnabledChanged) GetEnabled() bool { if x != nil { return x.Enabled } return false } // RoomPasswordChanged 表达房间入房密码状态变更,不携带明文或哈希。 type RoomPasswordChanged struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` Locked bool `protobuf:"varint,2,opt,name=locked,proto3" json:"locked,omitempty"` // visible_region_id 是房间当前可见区域,activity-service 用它把锁房变化投到区域播报群。 VisibleRegionId int64 `protobuf:"varint,3,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomPasswordChanged) Reset() { *x = RoomPasswordChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomPasswordChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomPasswordChanged) ProtoMessage() {} func (x *RoomPasswordChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[11] 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 RoomPasswordChanged.ProtoReflect.Descriptor instead. func (*RoomPasswordChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{11} } func (x *RoomPasswordChanged) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomPasswordChanged) GetLocked() bool { if x != nil { return x.Locked } return false } func (x *RoomPasswordChanged) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } // RoomAdminChanged 表达房间管理员集合变更。 type RoomAdminChanged struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,2,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` Enabled bool `protobuf:"varint,3,opt,name=enabled,proto3" json:"enabled,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomAdminChanged) Reset() { *x = RoomAdminChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomAdminChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomAdminChanged) ProtoMessage() {} func (x *RoomAdminChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[12] 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 RoomAdminChanged.ProtoReflect.Descriptor instead. func (*RoomAdminChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{12} } func (x *RoomAdminChanged) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomAdminChanged) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } func (x *RoomAdminChanged) GetEnabled() bool { if x != nil { return x.Enabled } return false } // RoomUserMuted 表达禁言状态变更。 type RoomUserMuted struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,2,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` Muted bool `protobuf:"varint,3,opt,name=muted,proto3" json:"muted,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomUserMuted) Reset() { *x = RoomUserMuted{} mi := &file_proto_events_room_v1_events_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomUserMuted) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomUserMuted) ProtoMessage() {} func (x *RoomUserMuted) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[13] 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 RoomUserMuted.ProtoReflect.Descriptor instead. func (*RoomUserMuted) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{13} } func (x *RoomUserMuted) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomUserMuted) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } func (x *RoomUserMuted) GetMuted() bool { if x != nil { return x.Muted } return false } // RoomUserKicked 表达踢人动作。 type RoomUserKicked struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,2,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomUserKicked) Reset() { *x = RoomUserKicked{} mi := &file_proto_events_room_v1_events_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomUserKicked) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomUserKicked) ProtoMessage() {} func (x *RoomUserKicked) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[14] 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 RoomUserKicked.ProtoReflect.Descriptor instead. func (*RoomUserKicked) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{14} } func (x *RoomUserKicked) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomUserKicked) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } // RoomUserUnbanned 表达解除房间 ban。 type RoomUserUnbanned struct { state protoimpl.MessageState `protogen:"open.v1"` ActorUserId int64 `protobuf:"varint,1,opt,name=actor_user_id,json=actorUserId,proto3" json:"actor_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,2,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomUserUnbanned) Reset() { *x = RoomUserUnbanned{} mi := &file_proto_events_room_v1_events_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomUserUnbanned) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomUserUnbanned) ProtoMessage() {} func (x *RoomUserUnbanned) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[15] 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 RoomUserUnbanned.ProtoReflect.Descriptor instead. func (*RoomUserUnbanned) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{15} } func (x *RoomUserUnbanned) GetActorUserId() int64 { if x != nil { return x.ActorUserId } return 0 } func (x *RoomUserUnbanned) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } // RoomGiftSent 表达送礼成功且已落房间状态。 type RoomGiftSent struct { state protoimpl.MessageState `protogen:"open.v1"` SenderUserId int64 `protobuf:"varint,1,opt,name=sender_user_id,json=senderUserId,proto3" json:"sender_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,2,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` GiftId string `protobuf:"bytes,3,opt,name=gift_id,json=giftId,proto3" json:"gift_id,omitempty"` GiftCount int32 `protobuf:"varint,4,opt,name=gift_count,json=giftCount,proto3" json:"gift_count,omitempty"` GiftValue int64 `protobuf:"varint,5,opt,name=gift_value,json=giftValue,proto3" json:"gift_value,omitempty"` BillingReceiptId string `protobuf:"bytes,6,opt,name=billing_receipt_id,json=billingReceiptId,proto3" json:"billing_receipt_id,omitempty"` VisibleRegionId int64 `protobuf:"varint,7,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` CommandId string `protobuf:"bytes,8,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` PoolId string `protobuf:"bytes,9,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"` CoinSpent int64 `protobuf:"varint,10,opt,name=coin_spent,json=coinSpent,proto3" json:"coin_spent,omitempty"` CountryId int64 `protobuf:"varint,11,opt,name=country_id,json=countryId,proto3" json:"country_id,omitempty"` RegionId int64 `protobuf:"varint,12,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"` GiftTypeCode string `protobuf:"bytes,13,opt,name=gift_type_code,json=giftTypeCode,proto3" json:"gift_type_code,omitempty"` CpRelationType string `protobuf:"bytes,14,opt,name=cp_relation_type,json=cpRelationType,proto3" json:"cp_relation_type,omitempty"` GiftName string `protobuf:"bytes,15,opt,name=gift_name,json=giftName,proto3" json:"gift_name,omitempty"` GiftIconUrl string `protobuf:"bytes,16,opt,name=gift_icon_url,json=giftIconUrl,proto3" json:"gift_icon_url,omitempty"` GiftAnimationUrl string `protobuf:"bytes,17,opt,name=gift_animation_url,json=giftAnimationUrl,proto3" json:"gift_animation_url,omitempty"` TargetGiftValue int64 `protobuf:"varint,18,opt,name=target_gift_value,json=targetGiftValue,proto3" json:"target_gift_value,omitempty"` GiftEffectTypes []string `protobuf:"bytes,19,rep,name=gift_effect_types,json=giftEffectTypes,proto3" json:"gift_effect_types,omitempty"` // is_robot_gift 标记机器人房间展示用礼物事实;下游真实统计、任务和结算消费者必须跳过。 IsRobotGift bool `protobuf:"varint,20,opt,name=is_robot_gift,json=isRobotGift,proto3" json:"is_robot_gift,omitempty"` // synthetic_lucky_gift 标记幸运礼物只用于房间表现,不写真实抽奖流水、不扣真实奖池、不发真实奖励。 SyntheticLuckyGift bool `protobuf:"varint,21,opt,name=synthetic_lucky_gift,json=syntheticLuckyGift,proto3" json:"synthetic_lucky_gift,omitempty"` // real_room_robot_gift 标记真人房机器人送出的真实热度礼物,用于 Databi 单独统计机器人投放价值。 RealRoomRobotGift bool `protobuf:"varint,22,opt,name=real_room_robot_gift,json=realRoomRobotGift,proto3" json:"real_room_robot_gift,omitempty"` // sender_name 是送礼入口固化的展示昵称,只用于客户端 IM 展示兜底,不作为用户主资料事实。 SenderName string `protobuf:"bytes,23,opt,name=sender_name,json=senderName,proto3" json:"sender_name,omitempty"` SenderAvatar string `protobuf:"bytes,24,opt,name=sender_avatar,json=senderAvatar,proto3" json:"sender_avatar,omitempty"` SenderDisplayUserId string `protobuf:"bytes,25,opt,name=sender_display_user_id,json=senderDisplayUserId,proto3" json:"sender_display_user_id,omitempty"` SenderPrettyDisplayUserId string `protobuf:"bytes,26,opt,name=sender_pretty_display_user_id,json=senderPrettyDisplayUserId,proto3" json:"sender_pretty_display_user_id,omitempty"` // receiver_nickname 是收礼目标在送礼瞬间的展示昵称;字段名匹配 Flutter 已有解析逻辑。 ReceiverNickname string `protobuf:"bytes,27,opt,name=receiver_nickname,json=receiverNickname,proto3" json:"receiver_nickname,omitempty"` ReceiverAvatar string `protobuf:"bytes,28,opt,name=receiver_avatar,json=receiverAvatar,proto3" json:"receiver_avatar,omitempty"` ReceiverDisplayUserId string `protobuf:"bytes,29,opt,name=receiver_display_user_id,json=receiverDisplayUserId,proto3" json:"receiver_display_user_id,omitempty"` ReceiverPrettyDisplayUserId string `protobuf:"bytes,30,opt,name=receiver_pretty_display_user_id,json=receiverPrettyDisplayUserId,proto3" json:"receiver_pretty_display_user_id,omitempty"` // display_mode=batch 表示这条逐目标事实只给统计、activity、CP 和礼物墙消费;房间展示由同命令的 RoomGiftBatchSent 承担。 DisplayMode string `protobuf:"bytes,31,opt,name=display_mode,json=displayMode,proto3" json:"display_mode,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomGiftSent) Reset() { *x = RoomGiftSent{} mi := &file_proto_events_room_v1_events_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomGiftSent) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomGiftSent) ProtoMessage() {} func (x *RoomGiftSent) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[16] 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 RoomGiftSent.ProtoReflect.Descriptor instead. func (*RoomGiftSent) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{16} } func (x *RoomGiftSent) GetSenderUserId() int64 { if x != nil { return x.SenderUserId } return 0 } func (x *RoomGiftSent) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } func (x *RoomGiftSent) GetGiftId() string { if x != nil { return x.GiftId } return "" } func (x *RoomGiftSent) GetGiftCount() int32 { if x != nil { return x.GiftCount } return 0 } func (x *RoomGiftSent) GetGiftValue() int64 { if x != nil { return x.GiftValue } return 0 } func (x *RoomGiftSent) GetBillingReceiptId() string { if x != nil { return x.BillingReceiptId } return "" } func (x *RoomGiftSent) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } func (x *RoomGiftSent) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomGiftSent) GetPoolId() string { if x != nil { return x.PoolId } return "" } func (x *RoomGiftSent) GetCoinSpent() int64 { if x != nil { return x.CoinSpent } return 0 } func (x *RoomGiftSent) GetCountryId() int64 { if x != nil { return x.CountryId } return 0 } func (x *RoomGiftSent) GetRegionId() int64 { if x != nil { return x.RegionId } return 0 } func (x *RoomGiftSent) GetGiftTypeCode() string { if x != nil { return x.GiftTypeCode } return "" } func (x *RoomGiftSent) GetCpRelationType() string { if x != nil { return x.CpRelationType } return "" } func (x *RoomGiftSent) GetGiftName() string { if x != nil { return x.GiftName } return "" } func (x *RoomGiftSent) GetGiftIconUrl() string { if x != nil { return x.GiftIconUrl } return "" } func (x *RoomGiftSent) GetGiftAnimationUrl() string { if x != nil { return x.GiftAnimationUrl } return "" } func (x *RoomGiftSent) GetTargetGiftValue() int64 { if x != nil { return x.TargetGiftValue } return 0 } func (x *RoomGiftSent) GetGiftEffectTypes() []string { if x != nil { return x.GiftEffectTypes } return nil } func (x *RoomGiftSent) GetIsRobotGift() bool { if x != nil { return x.IsRobotGift } return false } func (x *RoomGiftSent) GetSyntheticLuckyGift() bool { if x != nil { return x.SyntheticLuckyGift } return false } func (x *RoomGiftSent) GetRealRoomRobotGift() bool { if x != nil { return x.RealRoomRobotGift } return false } func (x *RoomGiftSent) GetSenderName() string { if x != nil { return x.SenderName } return "" } func (x *RoomGiftSent) GetSenderAvatar() string { if x != nil { return x.SenderAvatar } return "" } func (x *RoomGiftSent) GetSenderDisplayUserId() string { if x != nil { return x.SenderDisplayUserId } return "" } func (x *RoomGiftSent) GetSenderPrettyDisplayUserId() string { if x != nil { return x.SenderPrettyDisplayUserId } return "" } func (x *RoomGiftSent) GetReceiverNickname() string { if x != nil { return x.ReceiverNickname } return "" } func (x *RoomGiftSent) GetReceiverAvatar() string { if x != nil { return x.ReceiverAvatar } return "" } func (x *RoomGiftSent) GetReceiverDisplayUserId() string { if x != nil { return x.ReceiverDisplayUserId } return "" } func (x *RoomGiftSent) GetReceiverPrettyDisplayUserId() string { if x != nil { return x.ReceiverPrettyDisplayUserId } return "" } func (x *RoomGiftSent) GetDisplayMode() string { if x != nil { return x.DisplayMode } return "" } // RoomGiftBatchLuckyResult 是批量送礼展示事件内的逐目标幸运礼物结果快照。 // 它只进入房间 IM 展示,不作为 activity 中奖事实,也不携带送礼人余额。 type RoomGiftBatchLuckyResult struct { state protoimpl.MessageState `protogen:"open.v1"` Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"` DrawId string `protobuf:"bytes,2,opt,name=draw_id,json=drawId,proto3" json:"draw_id,omitempty"` CommandId string `protobuf:"bytes,3,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` PoolId string `protobuf:"bytes,4,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"` GiftId string `protobuf:"bytes,5,opt,name=gift_id,json=giftId,proto3" json:"gift_id,omitempty"` RuleVersion int64 `protobuf:"varint,6,opt,name=rule_version,json=ruleVersion,proto3" json:"rule_version,omitempty"` ExperiencePool string `protobuf:"bytes,7,opt,name=experience_pool,json=experiencePool,proto3" json:"experience_pool,omitempty"` SelectedTierId string `protobuf:"bytes,8,opt,name=selected_tier_id,json=selectedTierId,proto3" json:"selected_tier_id,omitempty"` MultiplierPpm int64 `protobuf:"varint,9,opt,name=multiplier_ppm,json=multiplierPpm,proto3" json:"multiplier_ppm,omitempty"` BaseRewardCoins int64 `protobuf:"varint,10,opt,name=base_reward_coins,json=baseRewardCoins,proto3" json:"base_reward_coins,omitempty"` EffectiveRewardCoins int64 `protobuf:"varint,11,opt,name=effective_reward_coins,json=effectiveRewardCoins,proto3" json:"effective_reward_coins,omitempty"` RewardStatus string `protobuf:"bytes,12,opt,name=reward_status,json=rewardStatus,proto3" json:"reward_status,omitempty"` StageFeedback bool `protobuf:"varint,13,opt,name=stage_feedback,json=stageFeedback,proto3" json:"stage_feedback,omitempty"` HighMultiplier bool `protobuf:"varint,14,opt,name=high_multiplier,json=highMultiplier,proto3" json:"high_multiplier,omitempty"` CreatedAtMs int64 `protobuf:"varint,15,opt,name=created_at_ms,json=createdAtMs,proto3" json:"created_at_ms,omitempty"` TargetUserId int64 `protobuf:"varint,16,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomGiftBatchLuckyResult) Reset() { *x = RoomGiftBatchLuckyResult{} mi := &file_proto_events_room_v1_events_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomGiftBatchLuckyResult) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomGiftBatchLuckyResult) ProtoMessage() {} func (x *RoomGiftBatchLuckyResult) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[17] 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 RoomGiftBatchLuckyResult.ProtoReflect.Descriptor instead. func (*RoomGiftBatchLuckyResult) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{17} } func (x *RoomGiftBatchLuckyResult) GetEnabled() bool { if x != nil { return x.Enabled } return false } func (x *RoomGiftBatchLuckyResult) GetDrawId() string { if x != nil { return x.DrawId } return "" } func (x *RoomGiftBatchLuckyResult) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomGiftBatchLuckyResult) GetPoolId() string { if x != nil { return x.PoolId } return "" } func (x *RoomGiftBatchLuckyResult) GetGiftId() string { if x != nil { return x.GiftId } return "" } func (x *RoomGiftBatchLuckyResult) GetRuleVersion() int64 { if x != nil { return x.RuleVersion } return 0 } func (x *RoomGiftBatchLuckyResult) GetExperiencePool() string { if x != nil { return x.ExperiencePool } return "" } func (x *RoomGiftBatchLuckyResult) GetSelectedTierId() string { if x != nil { return x.SelectedTierId } return "" } func (x *RoomGiftBatchLuckyResult) GetMultiplierPpm() int64 { if x != nil { return x.MultiplierPpm } return 0 } func (x *RoomGiftBatchLuckyResult) GetBaseRewardCoins() int64 { if x != nil { return x.BaseRewardCoins } return 0 } func (x *RoomGiftBatchLuckyResult) GetEffectiveRewardCoins() int64 { if x != nil { return x.EffectiveRewardCoins } return 0 } func (x *RoomGiftBatchLuckyResult) GetRewardStatus() string { if x != nil { return x.RewardStatus } return "" } func (x *RoomGiftBatchLuckyResult) GetStageFeedback() bool { if x != nil { return x.StageFeedback } return false } func (x *RoomGiftBatchLuckyResult) GetHighMultiplier() bool { if x != nil { return x.HighMultiplier } return false } func (x *RoomGiftBatchLuckyResult) GetCreatedAtMs() int64 { if x != nil { return x.CreatedAtMs } return 0 } func (x *RoomGiftBatchLuckyResult) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } // RoomGiftBatchTarget 固化批量送礼中单个收礼目标的展示和结算快照。 // 目标资料来自 gateway 入站时的 user-service 快照,避免 IM bridge 再回查高频用户服务。 type RoomGiftBatchTarget struct { state protoimpl.MessageState `protogen:"open.v1"` TargetUserId int64 `protobuf:"varint,1,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` ReceiverNickname string `protobuf:"bytes,2,opt,name=receiver_nickname,json=receiverNickname,proto3" json:"receiver_nickname,omitempty"` ReceiverAvatar string `protobuf:"bytes,3,opt,name=receiver_avatar,json=receiverAvatar,proto3" json:"receiver_avatar,omitempty"` ReceiverDisplayUserId string `protobuf:"bytes,4,opt,name=receiver_display_user_id,json=receiverDisplayUserId,proto3" json:"receiver_display_user_id,omitempty"` ReceiverPrettyDisplayUserId string `protobuf:"bytes,5,opt,name=receiver_pretty_display_user_id,json=receiverPrettyDisplayUserId,proto3" json:"receiver_pretty_display_user_id,omitempty"` GiftValue int64 `protobuf:"varint,6,opt,name=gift_value,json=giftValue,proto3" json:"gift_value,omitempty"` TargetGiftValue int64 `protobuf:"varint,7,opt,name=target_gift_value,json=targetGiftValue,proto3" json:"target_gift_value,omitempty"` CoinSpent int64 `protobuf:"varint,8,opt,name=coin_spent,json=coinSpent,proto3" json:"coin_spent,omitempty"` BillingReceiptId string `protobuf:"bytes,9,opt,name=billing_receipt_id,json=billingReceiptId,proto3" json:"billing_receipt_id,omitempty"` CommandId string `protobuf:"bytes,10,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` LuckyGift *RoomGiftBatchLuckyResult `protobuf:"bytes,11,opt,name=lucky_gift,json=luckyGift,proto3" json:"lucky_gift,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomGiftBatchTarget) Reset() { *x = RoomGiftBatchTarget{} mi := &file_proto_events_room_v1_events_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomGiftBatchTarget) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomGiftBatchTarget) ProtoMessage() {} func (x *RoomGiftBatchTarget) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[18] 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 RoomGiftBatchTarget.ProtoReflect.Descriptor instead. func (*RoomGiftBatchTarget) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{18} } func (x *RoomGiftBatchTarget) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } func (x *RoomGiftBatchTarget) GetReceiverNickname() string { if x != nil { return x.ReceiverNickname } return "" } func (x *RoomGiftBatchTarget) GetReceiverAvatar() string { if x != nil { return x.ReceiverAvatar } return "" } func (x *RoomGiftBatchTarget) GetReceiverDisplayUserId() string { if x != nil { return x.ReceiverDisplayUserId } return "" } func (x *RoomGiftBatchTarget) GetReceiverPrettyDisplayUserId() string { if x != nil { return x.ReceiverPrettyDisplayUserId } return "" } func (x *RoomGiftBatchTarget) GetGiftValue() int64 { if x != nil { return x.GiftValue } return 0 } func (x *RoomGiftBatchTarget) GetTargetGiftValue() int64 { if x != nil { return x.TargetGiftValue } return 0 } func (x *RoomGiftBatchTarget) GetCoinSpent() int64 { if x != nil { return x.CoinSpent } return 0 } func (x *RoomGiftBatchTarget) GetBillingReceiptId() string { if x != nil { return x.BillingReceiptId } return "" } func (x *RoomGiftBatchTarget) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomGiftBatchTarget) GetLuckyGift() *RoomGiftBatchLuckyResult { if x != nil { return x.LuckyGift } return nil } // RoomGiftBatchSent 只服务新 Flutter 的多人送礼展示。 // 逐目标 RoomGiftSent 仍然写 durable outbox 作为统计、CP、礼物墙和账务消费事实。 type RoomGiftBatchSent struct { state protoimpl.MessageState `protogen:"open.v1"` SenderUserId int64 `protobuf:"varint,1,opt,name=sender_user_id,json=senderUserId,proto3" json:"sender_user_id,omitempty"` SenderName string `protobuf:"bytes,2,opt,name=sender_name,json=senderName,proto3" json:"sender_name,omitempty"` SenderAvatar string `protobuf:"bytes,3,opt,name=sender_avatar,json=senderAvatar,proto3" json:"sender_avatar,omitempty"` SenderDisplayUserId string `protobuf:"bytes,4,opt,name=sender_display_user_id,json=senderDisplayUserId,proto3" json:"sender_display_user_id,omitempty"` SenderPrettyDisplayUserId string `protobuf:"bytes,5,opt,name=sender_pretty_display_user_id,json=senderPrettyDisplayUserId,proto3" json:"sender_pretty_display_user_id,omitempty"` GiftId string `protobuf:"bytes,6,opt,name=gift_id,json=giftId,proto3" json:"gift_id,omitempty"` GiftCount int32 `protobuf:"varint,7,opt,name=gift_count,json=giftCount,proto3" json:"gift_count,omitempty"` TotalGiftValue int64 `protobuf:"varint,8,opt,name=total_gift_value,json=totalGiftValue,proto3" json:"total_gift_value,omitempty"` TotalCoinSpent int64 `protobuf:"varint,9,opt,name=total_coin_spent,json=totalCoinSpent,proto3" json:"total_coin_spent,omitempty"` BillingReceiptId string `protobuf:"bytes,10,opt,name=billing_receipt_id,json=billingReceiptId,proto3" json:"billing_receipt_id,omitempty"` RoomHeat int64 `protobuf:"varint,11,opt,name=room_heat,json=roomHeat,proto3" json:"room_heat,omitempty"` PoolId string `protobuf:"bytes,12,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"` GiftTypeCode string `protobuf:"bytes,13,opt,name=gift_type_code,json=giftTypeCode,proto3" json:"gift_type_code,omitempty"` CpRelationType string `protobuf:"bytes,14,opt,name=cp_relation_type,json=cpRelationType,proto3" json:"cp_relation_type,omitempty"` GiftName string `protobuf:"bytes,15,opt,name=gift_name,json=giftName,proto3" json:"gift_name,omitempty"` GiftIconUrl string `protobuf:"bytes,16,opt,name=gift_icon_url,json=giftIconUrl,proto3" json:"gift_icon_url,omitempty"` GiftAnimationUrl string `protobuf:"bytes,17,opt,name=gift_animation_url,json=giftAnimationUrl,proto3" json:"gift_animation_url,omitempty"` GiftEffectTypes []string `protobuf:"bytes,18,rep,name=gift_effect_types,json=giftEffectTypes,proto3" json:"gift_effect_types,omitempty"` TargetUserIds []int64 `protobuf:"varint,19,rep,packed,name=target_user_ids,json=targetUserIds,proto3" json:"target_user_ids,omitempty"` Targets []*RoomGiftBatchTarget `protobuf:"bytes,20,rep,name=targets,proto3" json:"targets,omitempty"` CommandId string `protobuf:"bytes,21,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` VisibleRegionId int64 `protobuf:"varint,22,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomGiftBatchSent) Reset() { *x = RoomGiftBatchSent{} mi := &file_proto_events_room_v1_events_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomGiftBatchSent) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomGiftBatchSent) ProtoMessage() {} func (x *RoomGiftBatchSent) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[19] 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 RoomGiftBatchSent.ProtoReflect.Descriptor instead. func (*RoomGiftBatchSent) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{19} } func (x *RoomGiftBatchSent) GetSenderUserId() int64 { if x != nil { return x.SenderUserId } return 0 } func (x *RoomGiftBatchSent) GetSenderName() string { if x != nil { return x.SenderName } return "" } func (x *RoomGiftBatchSent) GetSenderAvatar() string { if x != nil { return x.SenderAvatar } return "" } func (x *RoomGiftBatchSent) GetSenderDisplayUserId() string { if x != nil { return x.SenderDisplayUserId } return "" } func (x *RoomGiftBatchSent) GetSenderPrettyDisplayUserId() string { if x != nil { return x.SenderPrettyDisplayUserId } return "" } func (x *RoomGiftBatchSent) GetGiftId() string { if x != nil { return x.GiftId } return "" } func (x *RoomGiftBatchSent) GetGiftCount() int32 { if x != nil { return x.GiftCount } return 0 } func (x *RoomGiftBatchSent) GetTotalGiftValue() int64 { if x != nil { return x.TotalGiftValue } return 0 } func (x *RoomGiftBatchSent) GetTotalCoinSpent() int64 { if x != nil { return x.TotalCoinSpent } return 0 } func (x *RoomGiftBatchSent) GetBillingReceiptId() string { if x != nil { return x.BillingReceiptId } return "" } func (x *RoomGiftBatchSent) GetRoomHeat() int64 { if x != nil { return x.RoomHeat } return 0 } func (x *RoomGiftBatchSent) GetPoolId() string { if x != nil { return x.PoolId } return "" } func (x *RoomGiftBatchSent) GetGiftTypeCode() string { if x != nil { return x.GiftTypeCode } return "" } func (x *RoomGiftBatchSent) GetCpRelationType() string { if x != nil { return x.CpRelationType } return "" } func (x *RoomGiftBatchSent) GetGiftName() string { if x != nil { return x.GiftName } return "" } func (x *RoomGiftBatchSent) GetGiftIconUrl() string { if x != nil { return x.GiftIconUrl } return "" } func (x *RoomGiftBatchSent) GetGiftAnimationUrl() string { if x != nil { return x.GiftAnimationUrl } return "" } func (x *RoomGiftBatchSent) GetGiftEffectTypes() []string { if x != nil { return x.GiftEffectTypes } return nil } func (x *RoomGiftBatchSent) GetTargetUserIds() []int64 { if x != nil { return x.TargetUserIds } return nil } func (x *RoomGiftBatchSent) GetTargets() []*RoomGiftBatchTarget { if x != nil { return x.Targets } return nil } func (x *RoomGiftBatchSent) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomGiftBatchSent) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } // RoomLuckyGiftDrawn 是 room-service 从 lucky-gift-service owner 事实派生的真人中奖展示事件。 // 它只承载腾讯云 IM 房间表现,不是 Room Cell 核心状态,不能推进 room_version、榜单或房间快照。 type RoomLuckyGiftDrawn struct { state protoimpl.MessageState `protogen:"open.v1"` DrawId string `protobuf:"bytes,1,opt,name=draw_id,json=drawId,proto3" json:"draw_id,omitempty"` CommandId string `protobuf:"bytes,2,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` PoolId string `protobuf:"bytes,3,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"` GiftId string `protobuf:"bytes,4,opt,name=gift_id,json=giftId,proto3" json:"gift_id,omitempty"` GiftCount int32 `protobuf:"varint,5,opt,name=gift_count,json=giftCount,proto3" json:"gift_count,omitempty"` SenderUserId int64 `protobuf:"varint,6,opt,name=sender_user_id,json=senderUserId,proto3" json:"sender_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,7,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` SenderName string `protobuf:"bytes,8,opt,name=sender_name,json=senderName,proto3" json:"sender_name,omitempty"` SenderAvatar string `protobuf:"bytes,9,opt,name=sender_avatar,json=senderAvatar,proto3" json:"sender_avatar,omitempty"` SenderDisplayUserId string `protobuf:"bytes,10,opt,name=sender_display_user_id,json=senderDisplayUserId,proto3" json:"sender_display_user_id,omitempty"` SenderPrettyDisplayUserId string `protobuf:"bytes,11,opt,name=sender_pretty_display_user_id,json=senderPrettyDisplayUserId,proto3" json:"sender_pretty_display_user_id,omitempty"` VisibleRegionId int64 `protobuf:"varint,12,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` CountryId int64 `protobuf:"varint,13,opt,name=country_id,json=countryId,proto3" json:"country_id,omitempty"` CoinSpent int64 `protobuf:"varint,14,opt,name=coin_spent,json=coinSpent,proto3" json:"coin_spent,omitempty"` RuleVersion int64 `protobuf:"varint,15,opt,name=rule_version,json=ruleVersion,proto3" json:"rule_version,omitempty"` ExperiencePool string `protobuf:"bytes,16,opt,name=experience_pool,json=experiencePool,proto3" json:"experience_pool,omitempty"` SelectedTierId string `protobuf:"bytes,17,opt,name=selected_tier_id,json=selectedTierId,proto3" json:"selected_tier_id,omitempty"` MultiplierPpm int64 `protobuf:"varint,18,opt,name=multiplier_ppm,json=multiplierPpm,proto3" json:"multiplier_ppm,omitempty"` BaseRewardCoins int64 `protobuf:"varint,19,opt,name=base_reward_coins,json=baseRewardCoins,proto3" json:"base_reward_coins,omitempty"` EffectiveRewardCoins int64 `protobuf:"varint,20,opt,name=effective_reward_coins,json=effectiveRewardCoins,proto3" json:"effective_reward_coins,omitempty"` StageFeedback bool `protobuf:"varint,21,opt,name=stage_feedback,json=stageFeedback,proto3" json:"stage_feedback,omitempty"` HighMultiplier bool `protobuf:"varint,22,opt,name=high_multiplier,json=highMultiplier,proto3" json:"high_multiplier,omitempty"` RewardStatus string `protobuf:"bytes,23,opt,name=reward_status,json=rewardStatus,proto3" json:"reward_status,omitempty"` WalletTransactionId string `protobuf:"bytes,24,opt,name=wallet_transaction_id,json=walletTransactionId,proto3" json:"wallet_transaction_id,omitempty"` // 时间沿用 lucky owner 的 UTC Unix epoch milliseconds,不以 room-service 消费时间覆盖。 DrawCreatedAtMs int64 `protobuf:"varint,25,opt,name=draw_created_at_ms,json=drawCreatedAtMs,proto3" json:"draw_created_at_ms,omitempty"` RewardGrantedAtMs int64 `protobuf:"varint,26,opt,name=reward_granted_at_ms,json=rewardGrantedAtMs,proto3" json:"reward_granted_at_ms,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomLuckyGiftDrawn) Reset() { *x = RoomLuckyGiftDrawn{} mi := &file_proto_events_room_v1_events_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomLuckyGiftDrawn) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomLuckyGiftDrawn) ProtoMessage() {} func (x *RoomLuckyGiftDrawn) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[20] 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 RoomLuckyGiftDrawn.ProtoReflect.Descriptor instead. func (*RoomLuckyGiftDrawn) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{20} } func (x *RoomLuckyGiftDrawn) GetDrawId() string { if x != nil { return x.DrawId } return "" } func (x *RoomLuckyGiftDrawn) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomLuckyGiftDrawn) GetPoolId() string { if x != nil { return x.PoolId } return "" } func (x *RoomLuckyGiftDrawn) GetGiftId() string { if x != nil { return x.GiftId } return "" } func (x *RoomLuckyGiftDrawn) GetGiftCount() int32 { if x != nil { return x.GiftCount } return 0 } func (x *RoomLuckyGiftDrawn) GetSenderUserId() int64 { if x != nil { return x.SenderUserId } return 0 } func (x *RoomLuckyGiftDrawn) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } func (x *RoomLuckyGiftDrawn) GetSenderName() string { if x != nil { return x.SenderName } return "" } func (x *RoomLuckyGiftDrawn) GetSenderAvatar() string { if x != nil { return x.SenderAvatar } return "" } func (x *RoomLuckyGiftDrawn) GetSenderDisplayUserId() string { if x != nil { return x.SenderDisplayUserId } return "" } func (x *RoomLuckyGiftDrawn) GetSenderPrettyDisplayUserId() string { if x != nil { return x.SenderPrettyDisplayUserId } return "" } func (x *RoomLuckyGiftDrawn) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } func (x *RoomLuckyGiftDrawn) GetCountryId() int64 { if x != nil { return x.CountryId } return 0 } func (x *RoomLuckyGiftDrawn) GetCoinSpent() int64 { if x != nil { return x.CoinSpent } return 0 } func (x *RoomLuckyGiftDrawn) GetRuleVersion() int64 { if x != nil { return x.RuleVersion } return 0 } func (x *RoomLuckyGiftDrawn) GetExperiencePool() string { if x != nil { return x.ExperiencePool } return "" } func (x *RoomLuckyGiftDrawn) GetSelectedTierId() string { if x != nil { return x.SelectedTierId } return "" } func (x *RoomLuckyGiftDrawn) GetMultiplierPpm() int64 { if x != nil { return x.MultiplierPpm } return 0 } func (x *RoomLuckyGiftDrawn) GetBaseRewardCoins() int64 { if x != nil { return x.BaseRewardCoins } return 0 } func (x *RoomLuckyGiftDrawn) GetEffectiveRewardCoins() int64 { if x != nil { return x.EffectiveRewardCoins } return 0 } func (x *RoomLuckyGiftDrawn) GetStageFeedback() bool { if x != nil { return x.StageFeedback } return false } func (x *RoomLuckyGiftDrawn) GetHighMultiplier() bool { if x != nil { return x.HighMultiplier } return false } func (x *RoomLuckyGiftDrawn) GetRewardStatus() string { if x != nil { return x.RewardStatus } return "" } func (x *RoomLuckyGiftDrawn) GetWalletTransactionId() string { if x != nil { return x.WalletTransactionId } return "" } func (x *RoomLuckyGiftDrawn) GetDrawCreatedAtMs() int64 { if x != nil { return x.DrawCreatedAtMs } return 0 } func (x *RoomLuckyGiftDrawn) GetRewardGrantedAtMs() int64 { if x != nil { return x.RewardGrantedAtMs } return 0 } // RoomRobotLuckyGiftDrawn 是机器人房间专用幸运礼物展示事件。 // 它复用客户端 lucky_gift_drawn 表现协议,但不代表真实奖池抽奖和钱包返奖事实。 type RoomRobotLuckyGiftDrawn struct { state protoimpl.MessageState `protogen:"open.v1"` DrawId string `protobuf:"bytes,1,opt,name=draw_id,json=drawId,proto3" json:"draw_id,omitempty"` CommandId string `protobuf:"bytes,2,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` SenderUserId int64 `protobuf:"varint,3,opt,name=sender_user_id,json=senderUserId,proto3" json:"sender_user_id,omitempty"` TargetUserId int64 `protobuf:"varint,4,opt,name=target_user_id,json=targetUserId,proto3" json:"target_user_id,omitempty"` GiftId string `protobuf:"bytes,5,opt,name=gift_id,json=giftId,proto3" json:"gift_id,omitempty"` GiftCount int32 `protobuf:"varint,6,opt,name=gift_count,json=giftCount,proto3" json:"gift_count,omitempty"` PoolId string `protobuf:"bytes,7,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"` MultiplierPpm int64 `protobuf:"varint,8,opt,name=multiplier_ppm,json=multiplierPpm,proto3" json:"multiplier_ppm,omitempty"` BaseRewardCoins int64 `protobuf:"varint,9,opt,name=base_reward_coins,json=baseRewardCoins,proto3" json:"base_reward_coins,omitempty"` EffectiveRewardCoins int64 `protobuf:"varint,10,opt,name=effective_reward_coins,json=effectiveRewardCoins,proto3" json:"effective_reward_coins,omitempty"` CreatedAtMs int64 `protobuf:"varint,11,opt,name=created_at_ms,json=createdAtMs,proto3" json:"created_at_ms,omitempty"` VisibleRegionId int64 `protobuf:"varint,12,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` IsRobot bool `protobuf:"varint,13,opt,name=is_robot,json=isRobot,proto3" json:"is_robot,omitempty"` Synthetic bool `protobuf:"varint,14,opt,name=synthetic,proto3" json:"synthetic,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomRobotLuckyGiftDrawn) Reset() { *x = RoomRobotLuckyGiftDrawn{} mi := &file_proto_events_room_v1_events_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomRobotLuckyGiftDrawn) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomRobotLuckyGiftDrawn) ProtoMessage() {} func (x *RoomRobotLuckyGiftDrawn) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[21] 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 RoomRobotLuckyGiftDrawn.ProtoReflect.Descriptor instead. func (*RoomRobotLuckyGiftDrawn) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{21} } func (x *RoomRobotLuckyGiftDrawn) GetDrawId() string { if x != nil { return x.DrawId } return "" } func (x *RoomRobotLuckyGiftDrawn) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomRobotLuckyGiftDrawn) GetSenderUserId() int64 { if x != nil { return x.SenderUserId } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetTargetUserId() int64 { if x != nil { return x.TargetUserId } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetGiftId() string { if x != nil { return x.GiftId } return "" } func (x *RoomRobotLuckyGiftDrawn) GetGiftCount() int32 { if x != nil { return x.GiftCount } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetPoolId() string { if x != nil { return x.PoolId } return "" } func (x *RoomRobotLuckyGiftDrawn) GetMultiplierPpm() int64 { if x != nil { return x.MultiplierPpm } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetBaseRewardCoins() int64 { if x != nil { return x.BaseRewardCoins } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetEffectiveRewardCoins() int64 { if x != nil { return x.EffectiveRewardCoins } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetCreatedAtMs() int64 { if x != nil { return x.CreatedAtMs } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } func (x *RoomRobotLuckyGiftDrawn) GetIsRobot() bool { if x != nil { return x.IsRobot } return false } func (x *RoomRobotLuckyGiftDrawn) GetSynthetic() bool { if x != nil { return x.Synthetic } return false } // RoomHeatChanged 表达热度变化结果。 type RoomHeatChanged struct { state protoimpl.MessageState `protogen:"open.v1"` Delta int64 `protobuf:"varint,1,opt,name=delta,proto3" json:"delta,omitempty"` CurrentHeat int64 `protobuf:"varint,2,opt,name=current_heat,json=currentHeat,proto3" json:"current_heat,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomHeatChanged) Reset() { *x = RoomHeatChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomHeatChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomHeatChanged) ProtoMessage() {} func (x *RoomHeatChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[22] 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 RoomHeatChanged.ProtoReflect.Descriptor instead. func (*RoomHeatChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{22} } func (x *RoomHeatChanged) GetDelta() int64 { if x != nil { return x.Delta } return 0 } func (x *RoomHeatChanged) GetCurrentHeat() int64 { if x != nil { return x.CurrentHeat } return 0 } // RoomRankChanged 表达本地礼物榜变化结果。 type RoomRankChanged struct { state protoimpl.MessageState `protogen:"open.v1"` UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` Score int64 `protobuf:"varint,2,opt,name=score,proto3" json:"score,omitempty"` GiftValue int64 `protobuf:"varint,3,opt,name=gift_value,json=giftValue,proto3" json:"gift_value,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomRankChanged) Reset() { *x = RoomRankChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomRankChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomRankChanged) ProtoMessage() {} func (x *RoomRankChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[23] 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 RoomRankChanged.ProtoReflect.Descriptor instead. func (*RoomRankChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{23} } func (x *RoomRankChanged) GetUserId() int64 { if x != nil { return x.UserId } return 0 } func (x *RoomRankChanged) GetScore() int64 { if x != nil { return x.Score } return 0 } func (x *RoomRankChanged) GetGiftValue() int64 { if x != nil { return x.GiftValue } return 0 } type RoomRocketRewardGrant struct { state protoimpl.MessageState `protogen:"open.v1"` RewardRole string `protobuf:"bytes,1,opt,name=reward_role,json=rewardRole,proto3" json:"reward_role,omitempty"` UserId int64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` RewardItemId string `protobuf:"bytes,3,opt,name=reward_item_id,json=rewardItemId,proto3" json:"reward_item_id,omitempty"` ResourceGroupId int64 `protobuf:"varint,4,opt,name=resource_group_id,json=resourceGroupId,proto3" json:"resource_group_id,omitempty"` DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` IconUrl string `protobuf:"bytes,6,opt,name=icon_url,json=iconUrl,proto3" json:"icon_url,omitempty"` GrantId string `protobuf:"bytes,7,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"` Status string `protobuf:"bytes,8,opt,name=status,proto3" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomRocketRewardGrant) Reset() { *x = RoomRocketRewardGrant{} mi := &file_proto_events_room_v1_events_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomRocketRewardGrant) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomRocketRewardGrant) ProtoMessage() {} func (x *RoomRocketRewardGrant) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[24] 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 RoomRocketRewardGrant.ProtoReflect.Descriptor instead. func (*RoomRocketRewardGrant) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{24} } func (x *RoomRocketRewardGrant) GetRewardRole() string { if x != nil { return x.RewardRole } return "" } func (x *RoomRocketRewardGrant) GetUserId() int64 { if x != nil { return x.UserId } return 0 } func (x *RoomRocketRewardGrant) GetRewardItemId() string { if x != nil { return x.RewardItemId } return "" } func (x *RoomRocketRewardGrant) GetResourceGroupId() int64 { if x != nil { return x.ResourceGroupId } return 0 } func (x *RoomRocketRewardGrant) GetDisplayName() string { if x != nil { return x.DisplayName } return "" } func (x *RoomRocketRewardGrant) GetIconUrl() string { if x != nil { return x.IconUrl } return "" } func (x *RoomRocketRewardGrant) GetGrantId() string { if x != nil { return x.GrantId } return "" } func (x *RoomRocketRewardGrant) GetStatus() string { if x != nil { return x.Status } return "" } // RoomRocketFuelChanged 表达送礼扣费成功后火箭有效燃料发生变化。 type RoomRocketFuelChanged struct { state protoimpl.MessageState `protogen:"open.v1"` RocketId string `protobuf:"bytes,1,opt,name=rocket_id,json=rocketId,proto3" json:"rocket_id,omitempty"` Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"` AddedFuel int64 `protobuf:"varint,3,opt,name=added_fuel,json=addedFuel,proto3" json:"added_fuel,omitempty"` EffectiveAddedFuel int64 `protobuf:"varint,4,opt,name=effective_added_fuel,json=effectiveAddedFuel,proto3" json:"effective_added_fuel,omitempty"` OverflowFuel int64 `protobuf:"varint,5,opt,name=overflow_fuel,json=overflowFuel,proto3" json:"overflow_fuel,omitempty"` CurrentFuel int64 `protobuf:"varint,6,opt,name=current_fuel,json=currentFuel,proto3" json:"current_fuel,omitempty"` FuelThreshold int64 `protobuf:"varint,7,opt,name=fuel_threshold,json=fuelThreshold,proto3" json:"fuel_threshold,omitempty"` Status string `protobuf:"bytes,8,opt,name=status,proto3" json:"status,omitempty"` ResetAtMs int64 `protobuf:"varint,9,opt,name=reset_at_ms,json=resetAtMs,proto3" json:"reset_at_ms,omitempty"` SenderUserId int64 `protobuf:"varint,10,opt,name=sender_user_id,json=senderUserId,proto3" json:"sender_user_id,omitempty"` GiftId string `protobuf:"bytes,11,opt,name=gift_id,json=giftId,proto3" json:"gift_id,omitempty"` GiftCount int32 `protobuf:"varint,12,opt,name=gift_count,json=giftCount,proto3" json:"gift_count,omitempty"` CommandId string `protobuf:"bytes,13,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` VisibleRegionId int64 `protobuf:"varint,14,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomRocketFuelChanged) Reset() { *x = RoomRocketFuelChanged{} mi := &file_proto_events_room_v1_events_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomRocketFuelChanged) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomRocketFuelChanged) ProtoMessage() {} func (x *RoomRocketFuelChanged) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[25] 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 RoomRocketFuelChanged.ProtoReflect.Descriptor instead. func (*RoomRocketFuelChanged) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{25} } func (x *RoomRocketFuelChanged) GetRocketId() string { if x != nil { return x.RocketId } return "" } func (x *RoomRocketFuelChanged) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *RoomRocketFuelChanged) GetAddedFuel() int64 { if x != nil { return x.AddedFuel } return 0 } func (x *RoomRocketFuelChanged) GetEffectiveAddedFuel() int64 { if x != nil { return x.EffectiveAddedFuel } return 0 } func (x *RoomRocketFuelChanged) GetOverflowFuel() int64 { if x != nil { return x.OverflowFuel } return 0 } func (x *RoomRocketFuelChanged) GetCurrentFuel() int64 { if x != nil { return x.CurrentFuel } return 0 } func (x *RoomRocketFuelChanged) GetFuelThreshold() int64 { if x != nil { return x.FuelThreshold } return 0 } func (x *RoomRocketFuelChanged) GetStatus() string { if x != nil { return x.Status } return "" } func (x *RoomRocketFuelChanged) GetResetAtMs() int64 { if x != nil { return x.ResetAtMs } return 0 } func (x *RoomRocketFuelChanged) GetSenderUserId() int64 { if x != nil { return x.SenderUserId } return 0 } func (x *RoomRocketFuelChanged) GetGiftId() string { if x != nil { return x.GiftId } return "" } func (x *RoomRocketFuelChanged) GetGiftCount() int32 { if x != nil { return x.GiftCount } return 0 } func (x *RoomRocketFuelChanged) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomRocketFuelChanged) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } // RoomRocketIgnited 表达火箭燃料满后进入倒计时,并作为区域/全局播报的事实源。 type RoomRocketIgnited struct { state protoimpl.MessageState `protogen:"open.v1"` RocketId string `protobuf:"bytes,1,opt,name=rocket_id,json=rocketId,proto3" json:"rocket_id,omitempty"` Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"` CurrentFuel int64 `protobuf:"varint,3,opt,name=current_fuel,json=currentFuel,proto3" json:"current_fuel,omitempty"` FuelThreshold int64 `protobuf:"varint,4,opt,name=fuel_threshold,json=fuelThreshold,proto3" json:"fuel_threshold,omitempty"` IgnitedAtMs int64 `protobuf:"varint,5,opt,name=ignited_at_ms,json=ignitedAtMs,proto3" json:"ignited_at_ms,omitempty"` LaunchAtMs int64 `protobuf:"varint,6,opt,name=launch_at_ms,json=launchAtMs,proto3" json:"launch_at_ms,omitempty"` BroadcastScope string `protobuf:"bytes,7,opt,name=broadcast_scope,json=broadcastScope,proto3" json:"broadcast_scope,omitempty"` VisibleRegionId int64 `protobuf:"varint,8,opt,name=visible_region_id,json=visibleRegionId,proto3" json:"visible_region_id,omitempty"` Top1UserId int64 `protobuf:"varint,9,opt,name=top1_user_id,json=top1UserId,proto3" json:"top1_user_id,omitempty"` IgniterUserId int64 `protobuf:"varint,10,opt,name=igniter_user_id,json=igniterUserId,proto3" json:"igniter_user_id,omitempty"` CommandId string `protobuf:"bytes,11,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"` RoomShortId string `protobuf:"bytes,12,opt,name=room_short_id,json=roomShortId,proto3" json:"room_short_id,omitempty"` RocketCoverUrl string `protobuf:"bytes,13,opt,name=rocket_cover_url,json=rocketCoverUrl,proto3" json:"rocket_cover_url,omitempty"` ResetAtMs int64 `protobuf:"varint,14,opt,name=reset_at_ms,json=resetAtMs,proto3" json:"reset_at_ms,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomRocketIgnited) Reset() { *x = RoomRocketIgnited{} mi := &file_proto_events_room_v1_events_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomRocketIgnited) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomRocketIgnited) ProtoMessage() {} func (x *RoomRocketIgnited) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[26] 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 RoomRocketIgnited.ProtoReflect.Descriptor instead. func (*RoomRocketIgnited) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{26} } func (x *RoomRocketIgnited) GetRocketId() string { if x != nil { return x.RocketId } return "" } func (x *RoomRocketIgnited) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *RoomRocketIgnited) GetCurrentFuel() int64 { if x != nil { return x.CurrentFuel } return 0 } func (x *RoomRocketIgnited) GetFuelThreshold() int64 { if x != nil { return x.FuelThreshold } return 0 } func (x *RoomRocketIgnited) GetIgnitedAtMs() int64 { if x != nil { return x.IgnitedAtMs } return 0 } func (x *RoomRocketIgnited) GetLaunchAtMs() int64 { if x != nil { return x.LaunchAtMs } return 0 } func (x *RoomRocketIgnited) GetBroadcastScope() string { if x != nil { return x.BroadcastScope } return "" } func (x *RoomRocketIgnited) GetVisibleRegionId() int64 { if x != nil { return x.VisibleRegionId } return 0 } func (x *RoomRocketIgnited) GetTop1UserId() int64 { if x != nil { return x.Top1UserId } return 0 } func (x *RoomRocketIgnited) GetIgniterUserId() int64 { if x != nil { return x.IgniterUserId } return 0 } func (x *RoomRocketIgnited) GetCommandId() string { if x != nil { return x.CommandId } return "" } func (x *RoomRocketIgnited) GetRoomShortId() string { if x != nil { return x.RoomShortId } return "" } func (x *RoomRocketIgnited) GetRocketCoverUrl() string { if x != nil { return x.RocketCoverUrl } return "" } func (x *RoomRocketIgnited) GetResetAtMs() int64 { if x != nil { return x.ResetAtMs } return 0 } // RoomRocketLaunched 表达火箭已经发射,在线用户名单按发射瞬间 Room Cell presence 结算。 type RoomRocketLaunched struct { state protoimpl.MessageState `protogen:"open.v1"` RocketId string `protobuf:"bytes,1,opt,name=rocket_id,json=rocketId,proto3" json:"rocket_id,omitempty"` Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"` NextLevel int32 `protobuf:"varint,3,opt,name=next_level,json=nextLevel,proto3" json:"next_level,omitempty"` LaunchedAtMs int64 `protobuf:"varint,4,opt,name=launched_at_ms,json=launchedAtMs,proto3" json:"launched_at_ms,omitempty"` ResetAtMs int64 `protobuf:"varint,5,opt,name=reset_at_ms,json=resetAtMs,proto3" json:"reset_at_ms,omitempty"` Top1UserId int64 `protobuf:"varint,6,opt,name=top1_user_id,json=top1UserId,proto3" json:"top1_user_id,omitempty"` IgniterUserId int64 `protobuf:"varint,7,opt,name=igniter_user_id,json=igniterUserId,proto3" json:"igniter_user_id,omitempty"` InRoomUserIds []int64 `protobuf:"varint,8,rep,packed,name=in_room_user_ids,json=inRoomUserIds,proto3" json:"in_room_user_ids,omitempty"` Rewards []*RoomRocketRewardGrant `protobuf:"bytes,9,rep,name=rewards,proto3" json:"rewards,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomRocketLaunched) Reset() { *x = RoomRocketLaunched{} mi := &file_proto_events_room_v1_events_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomRocketLaunched) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomRocketLaunched) ProtoMessage() {} func (x *RoomRocketLaunched) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[27] 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 RoomRocketLaunched.ProtoReflect.Descriptor instead. func (*RoomRocketLaunched) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{27} } func (x *RoomRocketLaunched) GetRocketId() string { if x != nil { return x.RocketId } return "" } func (x *RoomRocketLaunched) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *RoomRocketLaunched) GetNextLevel() int32 { if x != nil { return x.NextLevel } return 0 } func (x *RoomRocketLaunched) GetLaunchedAtMs() int64 { if x != nil { return x.LaunchedAtMs } return 0 } func (x *RoomRocketLaunched) GetResetAtMs() int64 { if x != nil { return x.ResetAtMs } return 0 } func (x *RoomRocketLaunched) GetTop1UserId() int64 { if x != nil { return x.Top1UserId } return 0 } func (x *RoomRocketLaunched) GetIgniterUserId() int64 { if x != nil { return x.IgniterUserId } return 0 } func (x *RoomRocketLaunched) GetInRoomUserIds() []int64 { if x != nil { return x.InRoomUserIds } return nil } func (x *RoomRocketLaunched) GetRewards() []*RoomRocketRewardGrant { if x != nil { return x.Rewards } return nil } // RoomRocketRewardGranted 是客户端展示发奖弹窗和私有通知的最小事实。 type RoomRocketRewardGranted struct { state protoimpl.MessageState `protogen:"open.v1"` RocketId string `protobuf:"bytes,1,opt,name=rocket_id,json=rocketId,proto3" json:"rocket_id,omitempty"` Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"` Rewards []*RoomRocketRewardGrant `protobuf:"bytes,3,rep,name=rewards,proto3" json:"rewards,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RoomRocketRewardGranted) Reset() { *x = RoomRocketRewardGranted{} mi := &file_proto_events_room_v1_events_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *RoomRocketRewardGranted) String() string { return protoimpl.X.MessageStringOf(x) } func (*RoomRocketRewardGranted) ProtoMessage() {} func (x *RoomRocketRewardGranted) ProtoReflect() protoreflect.Message { mi := &file_proto_events_room_v1_events_proto_msgTypes[28] 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 RoomRocketRewardGranted.ProtoReflect.Descriptor instead. func (*RoomRocketRewardGranted) Descriptor() ([]byte, []int) { return file_proto_events_room_v1_events_proto_rawDescGZIP(), []int{28} } func (x *RoomRocketRewardGranted) GetRocketId() string { if x != nil { return x.RocketId } return "" } func (x *RoomRocketRewardGranted) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *RoomRocketRewardGranted) GetRewards() []*RoomRocketRewardGrant { if x != nil { return x.Rewards } return nil } var File_proto_events_room_v1_events_proto protoreflect.FileDescriptor const file_proto_events_room_v1_events_proto_rawDesc = "" + "\n" + "!proto/events/room/v1/events.proto\x12\x14hyapp.events.room.v1\"\xda\x01\n" + "\rEventEnvelope\x12\x19\n" + "\bevent_id\x18\x01 \x01(\tR\aeventId\x12\x17\n" + "\aroom_id\x18\x02 \x01(\tR\x06roomId\x12\x1d\n" + "\n" + "event_type\x18\x03 \x01(\tR\teventType\x12!\n" + "\froom_version\x18\x04 \x01(\x03R\vroomVersion\x12$\n" + "\x0eoccurred_at_ms\x18\x05 \x01(\x03R\foccurredAtMs\x12\x12\n" + "\x04body\x18\x06 \x01(\fR\x04body\x12\x19\n" + "\bapp_code\x18\a \x01(\tR\aappCode\"\xcd\x01\n" + "\vRoomCreated\x12\"\n" + "\rowner_user_id\x18\x01 \x01(\x03R\vownerUserId\x12\x1d\n" + "\n" + "seat_count\x18\x03 \x01(\x05R\tseatCount\x12\x12\n" + "\x04mode\x18\x04 \x01(\tR\x04mode\x12\x1b\n" + "\troom_name\x18\x05 \x01(\tR\broomName\x12\x1f\n" + "\vroom_avatar\x18\x06 \x01(\tR\n" + "roomAvatar\x12)\n" + "\x10room_description\x18\a \x01(\tR\x0froomDescription\"\xf0\x01\n" + "\x12RoomProfileUpdated\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12\x1b\n" + "\troom_name\x18\x02 \x01(\tR\broomName\x12\x1f\n" + "\vroom_avatar\x18\x03 \x01(\tR\n" + "roomAvatar\x12)\n" + "\x10room_description\x18\x04 \x01(\tR\x0froomDescription\x12\x1d\n" + "\n" + "seat_count\x18\x05 \x01(\x05R\tseatCount\x12.\n" + "\x13room_background_url\x18\x06 \x01(\tR\x11roomBackgroundUrl\"\x90\x01\n" + "\x15RoomBackgroundChanged\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12#\n" + "\rbackground_id\x18\x02 \x01(\x03R\fbackgroundId\x12.\n" + "\x13room_background_url\x18\x03 \x01(\tR\x11roomBackgroundUrl\"\xc7\x02\n" + "\x18RoomEntryVehicleSnapshot\x12\x1f\n" + "\vresource_id\x18\x01 \x01(\x03R\n" + "resourceId\x12#\n" + "\rresource_code\x18\x02 \x01(\tR\fresourceCode\x12\x12\n" + "\x04name\x18\x03 \x01(\tR\x04name\x12\x1b\n" + "\tasset_url\x18\x04 \x01(\tR\bassetUrl\x12\x1f\n" + "\vpreview_url\x18\x05 \x01(\tR\n" + "previewUrl\x12#\n" + "\ranimation_url\x18\x06 \x01(\tR\fanimationUrl\x12#\n" + "\rmetadata_json\x18\a \x01(\tR\fmetadataJson\x12%\n" + "\x0eentitlement_id\x18\b \x01(\tR\rentitlementId\x12\"\n" + "\rexpires_at_ms\x18\t \x01(\x03R\vexpiresAtMs\"\xe9\x04\n" + "\x0eRoomUserJoined\x12\x17\n" + "\auser_id\x18\x01 \x01(\x03R\x06userId\x12\x12\n" + "\x04role\x18\x02 \x01(\tR\x04role\x12*\n" + "\x11visible_region_id\x18\x03 \x01(\x03R\x0fvisibleRegionId\x12S\n" + "\rentry_vehicle\x18\x04 \x01(\v2..hyapp.events.room.v1.RoomEntryVehicleSnapshotR\fentryVehicle\x12\x1d\n" + "\n" + "country_id\x18\x05 \x01(\x03R\tcountryId\x12\x1b\n" + "\tregion_id\x18\x06 \x01(\x03R\bregionId\x12\x19\n" + "\bis_robot\x18\a \x01(\bR\aisRobot\x12\x1a\n" + "\bnickname\x18\b \x01(\tR\bnickname\x12\x16\n" + "\x06avatar\x18\t \x01(\tR\x06avatar\x12&\n" + "\x0fdisplay_user_id\x18\n" + " \x01(\tR\rdisplayUserId\x123\n" + "\x16pretty_display_user_id\x18\v \x01(\tR\x13prettyDisplayUserId\x12(\n" + "\x10vip_program_type\x18\f \x01(\tR\x0evipProgramType\x12.\n" + "\x13effective_vip_level\x18\r \x01(\x05R\x11effectiveVipLevel\x12,\n" + "\x12effective_vip_name\x18\x0e \x01(\tR\x10effectiveVipName\x129\n" + "\x19room_entry_notice_enabled\x18\x0f \x01(\bR\x16roomEntryNoticeEnabled\"'\n" + "\fRoomUserLeft\x12\x17\n" + "\auser_id\x18\x01 \x01(\x03R\x06userId\"H\n" + "\n" + "RoomClosed\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12\x16\n" + "\x06reason\x18\x02 \x01(\tR\x06reason\"\x9d\x05\n" + "\x0eRoomMicChanged\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12$\n" + "\x0etarget_user_id\x18\x02 \x01(\x03R\ftargetUserId\x12\x1b\n" + "\tfrom_seat\x18\x03 \x01(\x05R\bfromSeat\x12\x17\n" + "\ato_seat\x18\x04 \x01(\x05R\x06toSeat\x12\x16\n" + "\x06action\x18\x05 \x01(\tR\x06action\x12$\n" + "\x0emic_session_id\x18\x06 \x01(\tR\fmicSessionId\x12#\n" + "\rpublish_state\x18\a \x01(\tR\fpublishState\x12\x16\n" + "\x06reason\x18\b \x01(\tR\x06reason\x12.\n" + "\x13publish_deadline_ms\x18\t \x01(\x03R\x11publishDeadlineMs\x121\n" + "\x15publish_event_time_ms\x18\n" + " \x01(\x03R\x12publishEventTimeMs\x12\x1b\n" + "\tmic_muted\x18\v \x01(\bR\bmicMuted\x12\x1f\n" + "\vseat_status\x18\f \x01(\tR\n" + "seatStatus\x12*\n" + "\x11target_gift_value\x18\r \x01(\x03R\x0ftargetGiftValue\x12'\n" + "\x0ftarget_nickname\x18\x0e \x01(\tR\x0etargetNickname\x12#\n" + "\rtarget_avatar\x18\x0f \x01(\tR\ftargetAvatar\x123\n" + "\x16target_display_user_id\x18\x10 \x01(\tR\x13targetDisplayUserId\x12@\n" + "\x1dtarget_pretty_display_user_id\x18\x11 \x01(\tR\x19targetPrettyDisplayUserId\"h\n" + "\x11RoomMicSeatLocked\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12\x17\n" + "\aseat_no\x18\x02 \x01(\x05R\x06seatNo\x12\x16\n" + "\x06locked\x18\x03 \x01(\bR\x06locked\"V\n" + "\x16RoomChatEnabledChanged\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12\x18\n" + "\aenabled\x18\x02 \x01(\bR\aenabled\"}\n" + "\x13RoomPasswordChanged\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12\x16\n" + "\x06locked\x18\x02 \x01(\bR\x06locked\x12*\n" + "\x11visible_region_id\x18\x03 \x01(\x03R\x0fvisibleRegionId\"v\n" + "\x10RoomAdminChanged\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12$\n" + "\x0etarget_user_id\x18\x02 \x01(\x03R\ftargetUserId\x12\x18\n" + "\aenabled\x18\x03 \x01(\bR\aenabled\"o\n" + "\rRoomUserMuted\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12$\n" + "\x0etarget_user_id\x18\x02 \x01(\x03R\ftargetUserId\x12\x14\n" + "\x05muted\x18\x03 \x01(\bR\x05muted\"Z\n" + "\x0eRoomUserKicked\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12$\n" + "\x0etarget_user_id\x18\x02 \x01(\x03R\ftargetUserId\"\\\n" + "\x10RoomUserUnbanned\x12\"\n" + "\ractor_user_id\x18\x01 \x01(\x03R\vactorUserId\x12$\n" + "\x0etarget_user_id\x18\x02 \x01(\x03R\ftargetUserId\"\xf1\t\n" + "\fRoomGiftSent\x12$\n" + "\x0esender_user_id\x18\x01 \x01(\x03R\fsenderUserId\x12$\n" + "\x0etarget_user_id\x18\x02 \x01(\x03R\ftargetUserId\x12\x17\n" + "\agift_id\x18\x03 \x01(\tR\x06giftId\x12\x1d\n" + "\n" + "gift_count\x18\x04 \x01(\x05R\tgiftCount\x12\x1d\n" + "\n" + "gift_value\x18\x05 \x01(\x03R\tgiftValue\x12,\n" + "\x12billing_receipt_id\x18\x06 \x01(\tR\x10billingReceiptId\x12*\n" + "\x11visible_region_id\x18\a \x01(\x03R\x0fvisibleRegionId\x12\x1d\n" + "\n" + "command_id\x18\b \x01(\tR\tcommandId\x12\x17\n" + "\apool_id\x18\t \x01(\tR\x06poolId\x12\x1d\n" + "\n" + "coin_spent\x18\n" + " \x01(\x03R\tcoinSpent\x12\x1d\n" + "\n" + "country_id\x18\v \x01(\x03R\tcountryId\x12\x1b\n" + "\tregion_id\x18\f \x01(\x03R\bregionId\x12$\n" + "\x0egift_type_code\x18\r \x01(\tR\fgiftTypeCode\x12(\n" + "\x10cp_relation_type\x18\x0e \x01(\tR\x0ecpRelationType\x12\x1b\n" + "\tgift_name\x18\x0f \x01(\tR\bgiftName\x12\"\n" + "\rgift_icon_url\x18\x10 \x01(\tR\vgiftIconUrl\x12,\n" + "\x12gift_animation_url\x18\x11 \x01(\tR\x10giftAnimationUrl\x12*\n" + "\x11target_gift_value\x18\x12 \x01(\x03R\x0ftargetGiftValue\x12*\n" + "\x11gift_effect_types\x18\x13 \x03(\tR\x0fgiftEffectTypes\x12\"\n" + "\ris_robot_gift\x18\x14 \x01(\bR\visRobotGift\x120\n" + "\x14synthetic_lucky_gift\x18\x15 \x01(\bR\x12syntheticLuckyGift\x12/\n" + "\x14real_room_robot_gift\x18\x16 \x01(\bR\x11realRoomRobotGift\x12\x1f\n" + "\vsender_name\x18\x17 \x01(\tR\n" + "senderName\x12#\n" + "\rsender_avatar\x18\x18 \x01(\tR\fsenderAvatar\x123\n" + "\x16sender_display_user_id\x18\x19 \x01(\tR\x13senderDisplayUserId\x12@\n" + "\x1dsender_pretty_display_user_id\x18\x1a \x01(\tR\x19senderPrettyDisplayUserId\x12+\n" + "\x11receiver_nickname\x18\x1b \x01(\tR\x10receiverNickname\x12'\n" + "\x0freceiver_avatar\x18\x1c \x01(\tR\x0ereceiverAvatar\x127\n" + "\x18receiver_display_user_id\x18\x1d \x01(\tR\x15receiverDisplayUserId\x12D\n" + "\x1freceiver_pretty_display_user_id\x18\x1e \x01(\tR\x1breceiverPrettyDisplayUserId\x12!\n" + "\fdisplay_mode\x18\x1f \x01(\tR\vdisplayMode\"\xdc\x04\n" + "\x18RoomGiftBatchLuckyResult\x12\x18\n" + "\aenabled\x18\x01 \x01(\bR\aenabled\x12\x17\n" + "\adraw_id\x18\x02 \x01(\tR\x06drawId\x12\x1d\n" + "\n" + "command_id\x18\x03 \x01(\tR\tcommandId\x12\x17\n" + "\apool_id\x18\x04 \x01(\tR\x06poolId\x12\x17\n" + "\agift_id\x18\x05 \x01(\tR\x06giftId\x12!\n" + "\frule_version\x18\x06 \x01(\x03R\vruleVersion\x12'\n" + "\x0fexperience_pool\x18\a \x01(\tR\x0eexperiencePool\x12(\n" + "\x10selected_tier_id\x18\b \x01(\tR\x0eselectedTierId\x12%\n" + "\x0emultiplier_ppm\x18\t \x01(\x03R\rmultiplierPpm\x12*\n" + "\x11base_reward_coins\x18\n" + " \x01(\x03R\x0fbaseRewardCoins\x124\n" + "\x16effective_reward_coins\x18\v \x01(\x03R\x14effectiveRewardCoins\x12#\n" + "\rreward_status\x18\f \x01(\tR\frewardStatus\x12%\n" + "\x0estage_feedback\x18\r \x01(\bR\rstageFeedback\x12'\n" + "\x0fhigh_multiplier\x18\x0e \x01(\bR\x0ehighMultiplier\x12\"\n" + "\rcreated_at_ms\x18\x0f \x01(\x03R\vcreatedAtMs\x12$\n" + "\x0etarget_user_id\x18\x10 \x01(\x03R\ftargetUserId\"\x96\x04\n" + "\x13RoomGiftBatchTarget\x12$\n" + "\x0etarget_user_id\x18\x01 \x01(\x03R\ftargetUserId\x12+\n" + "\x11receiver_nickname\x18\x02 \x01(\tR\x10receiverNickname\x12'\n" + "\x0freceiver_avatar\x18\x03 \x01(\tR\x0ereceiverAvatar\x127\n" + "\x18receiver_display_user_id\x18\x04 \x01(\tR\x15receiverDisplayUserId\x12D\n" + "\x1freceiver_pretty_display_user_id\x18\x05 \x01(\tR\x1breceiverPrettyDisplayUserId\x12\x1d\n" + "\n" + "gift_value\x18\x06 \x01(\x03R\tgiftValue\x12*\n" + "\x11target_gift_value\x18\a \x01(\x03R\x0ftargetGiftValue\x12\x1d\n" + "\n" + "coin_spent\x18\b \x01(\x03R\tcoinSpent\x12,\n" + "\x12billing_receipt_id\x18\t \x01(\tR\x10billingReceiptId\x12\x1d\n" + "\n" + "command_id\x18\n" + " \x01(\tR\tcommandId\x12M\n" + "\n" + "lucky_gift\x18\v \x01(\v2..hyapp.events.room.v1.RoomGiftBatchLuckyResultR\tluckyGift\"\x89\a\n" + "\x11RoomGiftBatchSent\x12$\n" + "\x0esender_user_id\x18\x01 \x01(\x03R\fsenderUserId\x12\x1f\n" + "\vsender_name\x18\x02 \x01(\tR\n" + "senderName\x12#\n" + "\rsender_avatar\x18\x03 \x01(\tR\fsenderAvatar\x123\n" + "\x16sender_display_user_id\x18\x04 \x01(\tR\x13senderDisplayUserId\x12@\n" + "\x1dsender_pretty_display_user_id\x18\x05 \x01(\tR\x19senderPrettyDisplayUserId\x12\x17\n" + "\agift_id\x18\x06 \x01(\tR\x06giftId\x12\x1d\n" + "\n" + "gift_count\x18\a \x01(\x05R\tgiftCount\x12(\n" + "\x10total_gift_value\x18\b \x01(\x03R\x0etotalGiftValue\x12(\n" + "\x10total_coin_spent\x18\t \x01(\x03R\x0etotalCoinSpent\x12,\n" + "\x12billing_receipt_id\x18\n" + " \x01(\tR\x10billingReceiptId\x12\x1b\n" + "\troom_heat\x18\v \x01(\x03R\broomHeat\x12\x17\n" + "\apool_id\x18\f \x01(\tR\x06poolId\x12$\n" + "\x0egift_type_code\x18\r \x01(\tR\fgiftTypeCode\x12(\n" + "\x10cp_relation_type\x18\x0e \x01(\tR\x0ecpRelationType\x12\x1b\n" + "\tgift_name\x18\x0f \x01(\tR\bgiftName\x12\"\n" + "\rgift_icon_url\x18\x10 \x01(\tR\vgiftIconUrl\x12,\n" + "\x12gift_animation_url\x18\x11 \x01(\tR\x10giftAnimationUrl\x12*\n" + "\x11gift_effect_types\x18\x12 \x03(\tR\x0fgiftEffectTypes\x12&\n" + "\x0ftarget_user_ids\x18\x13 \x03(\x03R\rtargetUserIds\x12C\n" + "\atargets\x18\x14 \x03(\v2).hyapp.events.room.v1.RoomGiftBatchTargetR\atargets\x12\x1d\n" + "\n" + "command_id\x18\x15 \x01(\tR\tcommandId\x12*\n" + "\x11visible_region_id\x18\x16 \x01(\x03R\x0fvisibleRegionId\"\x96\b\n" + "\x12RoomLuckyGiftDrawn\x12\x17\n" + "\adraw_id\x18\x01 \x01(\tR\x06drawId\x12\x1d\n" + "\n" + "command_id\x18\x02 \x01(\tR\tcommandId\x12\x17\n" + "\apool_id\x18\x03 \x01(\tR\x06poolId\x12\x17\n" + "\agift_id\x18\x04 \x01(\tR\x06giftId\x12\x1d\n" + "\n" + "gift_count\x18\x05 \x01(\x05R\tgiftCount\x12$\n" + "\x0esender_user_id\x18\x06 \x01(\x03R\fsenderUserId\x12$\n" + "\x0etarget_user_id\x18\a \x01(\x03R\ftargetUserId\x12\x1f\n" + "\vsender_name\x18\b \x01(\tR\n" + "senderName\x12#\n" + "\rsender_avatar\x18\t \x01(\tR\fsenderAvatar\x123\n" + "\x16sender_display_user_id\x18\n" + " \x01(\tR\x13senderDisplayUserId\x12@\n" + "\x1dsender_pretty_display_user_id\x18\v \x01(\tR\x19senderPrettyDisplayUserId\x12*\n" + "\x11visible_region_id\x18\f \x01(\x03R\x0fvisibleRegionId\x12\x1d\n" + "\n" + "country_id\x18\r \x01(\x03R\tcountryId\x12\x1d\n" + "\n" + "coin_spent\x18\x0e \x01(\x03R\tcoinSpent\x12!\n" + "\frule_version\x18\x0f \x01(\x03R\vruleVersion\x12'\n" + "\x0fexperience_pool\x18\x10 \x01(\tR\x0eexperiencePool\x12(\n" + "\x10selected_tier_id\x18\x11 \x01(\tR\x0eselectedTierId\x12%\n" + "\x0emultiplier_ppm\x18\x12 \x01(\x03R\rmultiplierPpm\x12*\n" + "\x11base_reward_coins\x18\x13 \x01(\x03R\x0fbaseRewardCoins\x124\n" + "\x16effective_reward_coins\x18\x14 \x01(\x03R\x14effectiveRewardCoins\x12%\n" + "\x0estage_feedback\x18\x15 \x01(\bR\rstageFeedback\x12'\n" + "\x0fhigh_multiplier\x18\x16 \x01(\bR\x0ehighMultiplier\x12#\n" + "\rreward_status\x18\x17 \x01(\tR\frewardStatus\x122\n" + "\x15wallet_transaction_id\x18\x18 \x01(\tR\x13walletTransactionId\x12+\n" + "\x12draw_created_at_ms\x18\x19 \x01(\x03R\x0fdrawCreatedAtMs\x12/\n" + "\x14reward_granted_at_ms\x18\x1a \x01(\x03R\x11rewardGrantedAtMs\"\x80\x04\n" + "\x17RoomRobotLuckyGiftDrawn\x12\x17\n" + "\adraw_id\x18\x01 \x01(\tR\x06drawId\x12\x1d\n" + "\n" + "command_id\x18\x02 \x01(\tR\tcommandId\x12$\n" + "\x0esender_user_id\x18\x03 \x01(\x03R\fsenderUserId\x12$\n" + "\x0etarget_user_id\x18\x04 \x01(\x03R\ftargetUserId\x12\x17\n" + "\agift_id\x18\x05 \x01(\tR\x06giftId\x12\x1d\n" + "\n" + "gift_count\x18\x06 \x01(\x05R\tgiftCount\x12\x17\n" + "\apool_id\x18\a \x01(\tR\x06poolId\x12%\n" + "\x0emultiplier_ppm\x18\b \x01(\x03R\rmultiplierPpm\x12*\n" + "\x11base_reward_coins\x18\t \x01(\x03R\x0fbaseRewardCoins\x124\n" + "\x16effective_reward_coins\x18\n" + " \x01(\x03R\x14effectiveRewardCoins\x12\"\n" + "\rcreated_at_ms\x18\v \x01(\x03R\vcreatedAtMs\x12*\n" + "\x11visible_region_id\x18\f \x01(\x03R\x0fvisibleRegionId\x12\x19\n" + "\bis_robot\x18\r \x01(\bR\aisRobot\x12\x1c\n" + "\tsynthetic\x18\x0e \x01(\bR\tsynthetic\"J\n" + "\x0fRoomHeatChanged\x12\x14\n" + "\x05delta\x18\x01 \x01(\x03R\x05delta\x12!\n" + "\fcurrent_heat\x18\x02 \x01(\x03R\vcurrentHeat\"_\n" + "\x0fRoomRankChanged\x12\x17\n" + "\auser_id\x18\x01 \x01(\x03R\x06userId\x12\x14\n" + "\x05score\x18\x02 \x01(\x03R\x05score\x12\x1d\n" + "\n" + "gift_value\x18\x03 \x01(\x03R\tgiftValue\"\x94\x02\n" + "\x15RoomRocketRewardGrant\x12\x1f\n" + "\vreward_role\x18\x01 \x01(\tR\n" + "rewardRole\x12\x17\n" + "\auser_id\x18\x02 \x01(\x03R\x06userId\x12$\n" + "\x0ereward_item_id\x18\x03 \x01(\tR\frewardItemId\x12*\n" + "\x11resource_group_id\x18\x04 \x01(\x03R\x0fresourceGroupId\x12!\n" + "\fdisplay_name\x18\x05 \x01(\tR\vdisplayName\x12\x19\n" + "\bicon_url\x18\x06 \x01(\tR\aiconUrl\x12\x19\n" + "\bgrant_id\x18\a \x01(\tR\agrantId\x12\x16\n" + "\x06status\x18\b \x01(\tR\x06status\"\xeb\x03\n" + "\x15RoomRocketFuelChanged\x12\x1b\n" + "\trocket_id\x18\x01 \x01(\tR\brocketId\x12\x14\n" + "\x05level\x18\x02 \x01(\x05R\x05level\x12\x1d\n" + "\n" + "added_fuel\x18\x03 \x01(\x03R\taddedFuel\x120\n" + "\x14effective_added_fuel\x18\x04 \x01(\x03R\x12effectiveAddedFuel\x12#\n" + "\roverflow_fuel\x18\x05 \x01(\x03R\foverflowFuel\x12!\n" + "\fcurrent_fuel\x18\x06 \x01(\x03R\vcurrentFuel\x12%\n" + "\x0efuel_threshold\x18\a \x01(\x03R\rfuelThreshold\x12\x16\n" + "\x06status\x18\b \x01(\tR\x06status\x12\x1e\n" + "\vreset_at_ms\x18\t \x01(\x03R\tresetAtMs\x12$\n" + "\x0esender_user_id\x18\n" + " \x01(\x03R\fsenderUserId\x12\x17\n" + "\agift_id\x18\v \x01(\tR\x06giftId\x12\x1d\n" + "\n" + "gift_count\x18\f \x01(\x05R\tgiftCount\x12\x1d\n" + "\n" + "command_id\x18\r \x01(\tR\tcommandId\x12*\n" + "\x11visible_region_id\x18\x0e \x01(\x03R\x0fvisibleRegionId\"\x82\x04\n" + "\x11RoomRocketIgnited\x12\x1b\n" + "\trocket_id\x18\x01 \x01(\tR\brocketId\x12\x14\n" + "\x05level\x18\x02 \x01(\x05R\x05level\x12!\n" + "\fcurrent_fuel\x18\x03 \x01(\x03R\vcurrentFuel\x12%\n" + "\x0efuel_threshold\x18\x04 \x01(\x03R\rfuelThreshold\x12\"\n" + "\rignited_at_ms\x18\x05 \x01(\x03R\vignitedAtMs\x12 \n" + "\flaunch_at_ms\x18\x06 \x01(\x03R\n" + "launchAtMs\x12'\n" + "\x0fbroadcast_scope\x18\a \x01(\tR\x0ebroadcastScope\x12*\n" + "\x11visible_region_id\x18\b \x01(\x03R\x0fvisibleRegionId\x12 \n" + "\ftop1_user_id\x18\t \x01(\x03R\n" + "top1UserId\x12&\n" + "\x0figniter_user_id\x18\n" + " \x01(\x03R\rigniterUserId\x12\x1d\n" + "\n" + "command_id\x18\v \x01(\tR\tcommandId\x12\"\n" + "\rroom_short_id\x18\f \x01(\tR\vroomShortId\x12(\n" + "\x10rocket_cover_url\x18\r \x01(\tR\x0erocketCoverUrl\x12\x1e\n" + "\vreset_at_ms\x18\x0e \x01(\x03R\tresetAtMs\"\xe6\x02\n" + "\x12RoomRocketLaunched\x12\x1b\n" + "\trocket_id\x18\x01 \x01(\tR\brocketId\x12\x14\n" + "\x05level\x18\x02 \x01(\x05R\x05level\x12\x1d\n" + "\n" + "next_level\x18\x03 \x01(\x05R\tnextLevel\x12$\n" + "\x0elaunched_at_ms\x18\x04 \x01(\x03R\flaunchedAtMs\x12\x1e\n" + "\vreset_at_ms\x18\x05 \x01(\x03R\tresetAtMs\x12 \n" + "\ftop1_user_id\x18\x06 \x01(\x03R\n" + "top1UserId\x12&\n" + "\x0figniter_user_id\x18\a \x01(\x03R\rigniterUserId\x12'\n" + "\x10in_room_user_ids\x18\b \x03(\x03R\rinRoomUserIds\x12E\n" + "\arewards\x18\t \x03(\v2+.hyapp.events.room.v1.RoomRocketRewardGrantR\arewards\"\x93\x01\n" + "\x17RoomRocketRewardGranted\x12\x1b\n" + "\trocket_id\x18\x01 \x01(\tR\brocketId\x12\x14\n" + "\x05level\x18\x02 \x01(\x05R\x05level\x12E\n" + "\arewards\x18\x03 \x03(\v2+.hyapp.events.room.v1.RoomRocketRewardGrantR\arewardsB3Z1hyapp.local/api/proto/events/room/v1;roomeventsv1b\x06proto3" var ( file_proto_events_room_v1_events_proto_rawDescOnce sync.Once file_proto_events_room_v1_events_proto_rawDescData []byte ) func file_proto_events_room_v1_events_proto_rawDescGZIP() []byte { file_proto_events_room_v1_events_proto_rawDescOnce.Do(func() { file_proto_events_room_v1_events_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_proto_events_room_v1_events_proto_rawDesc), len(file_proto_events_room_v1_events_proto_rawDesc))) }) return file_proto_events_room_v1_events_proto_rawDescData } var file_proto_events_room_v1_events_proto_msgTypes = make([]protoimpl.MessageInfo, 29) var file_proto_events_room_v1_events_proto_goTypes = []any{ (*EventEnvelope)(nil), // 0: hyapp.events.room.v1.EventEnvelope (*RoomCreated)(nil), // 1: hyapp.events.room.v1.RoomCreated (*RoomProfileUpdated)(nil), // 2: hyapp.events.room.v1.RoomProfileUpdated (*RoomBackgroundChanged)(nil), // 3: hyapp.events.room.v1.RoomBackgroundChanged (*RoomEntryVehicleSnapshot)(nil), // 4: hyapp.events.room.v1.RoomEntryVehicleSnapshot (*RoomUserJoined)(nil), // 5: hyapp.events.room.v1.RoomUserJoined (*RoomUserLeft)(nil), // 6: hyapp.events.room.v1.RoomUserLeft (*RoomClosed)(nil), // 7: hyapp.events.room.v1.RoomClosed (*RoomMicChanged)(nil), // 8: hyapp.events.room.v1.RoomMicChanged (*RoomMicSeatLocked)(nil), // 9: hyapp.events.room.v1.RoomMicSeatLocked (*RoomChatEnabledChanged)(nil), // 10: hyapp.events.room.v1.RoomChatEnabledChanged (*RoomPasswordChanged)(nil), // 11: hyapp.events.room.v1.RoomPasswordChanged (*RoomAdminChanged)(nil), // 12: hyapp.events.room.v1.RoomAdminChanged (*RoomUserMuted)(nil), // 13: hyapp.events.room.v1.RoomUserMuted (*RoomUserKicked)(nil), // 14: hyapp.events.room.v1.RoomUserKicked (*RoomUserUnbanned)(nil), // 15: hyapp.events.room.v1.RoomUserUnbanned (*RoomGiftSent)(nil), // 16: hyapp.events.room.v1.RoomGiftSent (*RoomGiftBatchLuckyResult)(nil), // 17: hyapp.events.room.v1.RoomGiftBatchLuckyResult (*RoomGiftBatchTarget)(nil), // 18: hyapp.events.room.v1.RoomGiftBatchTarget (*RoomGiftBatchSent)(nil), // 19: hyapp.events.room.v1.RoomGiftBatchSent (*RoomLuckyGiftDrawn)(nil), // 20: hyapp.events.room.v1.RoomLuckyGiftDrawn (*RoomRobotLuckyGiftDrawn)(nil), // 21: hyapp.events.room.v1.RoomRobotLuckyGiftDrawn (*RoomHeatChanged)(nil), // 22: hyapp.events.room.v1.RoomHeatChanged (*RoomRankChanged)(nil), // 23: hyapp.events.room.v1.RoomRankChanged (*RoomRocketRewardGrant)(nil), // 24: hyapp.events.room.v1.RoomRocketRewardGrant (*RoomRocketFuelChanged)(nil), // 25: hyapp.events.room.v1.RoomRocketFuelChanged (*RoomRocketIgnited)(nil), // 26: hyapp.events.room.v1.RoomRocketIgnited (*RoomRocketLaunched)(nil), // 27: hyapp.events.room.v1.RoomRocketLaunched (*RoomRocketRewardGranted)(nil), // 28: hyapp.events.room.v1.RoomRocketRewardGranted } var file_proto_events_room_v1_events_proto_depIdxs = []int32{ 4, // 0: hyapp.events.room.v1.RoomUserJoined.entry_vehicle:type_name -> hyapp.events.room.v1.RoomEntryVehicleSnapshot 17, // 1: hyapp.events.room.v1.RoomGiftBatchTarget.lucky_gift:type_name -> hyapp.events.room.v1.RoomGiftBatchLuckyResult 18, // 2: hyapp.events.room.v1.RoomGiftBatchSent.targets:type_name -> hyapp.events.room.v1.RoomGiftBatchTarget 24, // 3: hyapp.events.room.v1.RoomRocketLaunched.rewards:type_name -> hyapp.events.room.v1.RoomRocketRewardGrant 24, // 4: hyapp.events.room.v1.RoomRocketRewardGranted.rewards:type_name -> hyapp.events.room.v1.RoomRocketRewardGrant 5, // [5:5] is the sub-list for method output_type 5, // [5:5] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name 5, // [5:5] is the sub-list for extension extendee 0, // [0:5] is the sub-list for field type_name } func init() { file_proto_events_room_v1_events_proto_init() } func file_proto_events_room_v1_events_proto_init() { if File_proto_events_room_v1_events_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_proto_events_room_v1_events_proto_rawDesc), len(file_proto_events_room_v1_events_proto_rawDesc)), NumEnums: 0, NumMessages: 29, NumExtensions: 0, NumServices: 0, }, GoTypes: file_proto_events_room_v1_events_proto_goTypes, DependencyIndexes: file_proto_events_room_v1_events_proto_depIdxs, MessageInfos: file_proto_events_room_v1_events_proto_msgTypes, }.Build() File_proto_events_room_v1_events_proto = out.File file_proto_events_room_v1_events_proto_goTypes = nil file_proto_events_room_v1_events_proto_depIdxs = nil }