//
//Сервис управления настройками квартир

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// 	protoc-gen-go v1.30.0
// 	protoc        v4.23.1
// source: deviceapis/device/v1/deviceapis_device_room_v1.proto

package deviceapis_device_v1

import (
	_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options"
	_ "google.golang.org/genproto/googleapis/api/annotations"
	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
	reflect "reflect"
	sync "sync"
)

const (
	// Verify that this generated code is sufficiently up-to-date.
	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
	// Verify that runtime/protoimpl is sufficiently up-to-date.
	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)

// Запрос удаления списка настроек квартиры
type DeleteRoomListRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Фильтр квартир.
	// При передаче массива в параметр фильтра элементы массива работают в выборке через ИЛИ
	Filter *RoomFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
}

func (x *DeleteRoomListRequest) Reset() {
	*x = DeleteRoomListRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[0]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*DeleteRoomListRequest) ProtoMessage() {}

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

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

func (x *DeleteRoomListRequest) GetFilter() *RoomFilter {
	if x != nil {
		return x.Filter
	}
	return nil
}

// Ответ на запрос удаления списка настроек квартиры
type DeleteRoomListResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*DeleteRoomListResponse_Data
	//	*DeleteRoomListResponse_Error_
	Type isDeleteRoomListResponse_Type `protobuf_oneof:"type"`
}

func (x *DeleteRoomListResponse) Reset() {
	*x = DeleteRoomListResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[1]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*DeleteRoomListResponse) ProtoMessage() {}

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

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

func (m *DeleteRoomListResponse) GetType() isDeleteRoomListResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *DeleteRoomListResponse) GetData() int32 {
	if x, ok := x.GetType().(*DeleteRoomListResponse_Data); ok {
		return x.Data
	}
	return 0
}

func (x *DeleteRoomListResponse) GetError() *DeleteRoomListResponse_Error {
	if x, ok := x.GetType().(*DeleteRoomListResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isDeleteRoomListResponse_Type interface {
	isDeleteRoomListResponse_Type()
}

type DeleteRoomListResponse_Data struct {
	// Всего количество удаленных
	Data int32 `protobuf:"varint,1,opt,name=data,proto3,oneof"`
}

type DeleteRoomListResponse_Error_ struct {
	// Ошибка
	Error *DeleteRoomListResponse_Error `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

func (*DeleteRoomListResponse_Data) isDeleteRoomListResponse_Type() {}

func (*DeleteRoomListResponse_Error_) isDeleteRoomListResponse_Type() {}

// Запрос удаления настроек квартиры
type DeleteRoomRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Номер квартиры
	RoomNumber string `protobuf:"bytes,1,opt,name=room_number,json=roomNumber,proto3" json:"room_number,omitempty"`
}

func (x *DeleteRoomRequest) Reset() {
	*x = DeleteRoomRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[2]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*DeleteRoomRequest) ProtoMessage() {}

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

// Deprecated: Use DeleteRoomRequest.ProtoReflect.Descriptor instead.
func (*DeleteRoomRequest) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{2}
}

func (x *DeleteRoomRequest) GetRoomNumber() string {
	if x != nil {
		return x.RoomNumber
	}
	return ""
}

// Ответ на запрос удаления настроек квартиры
type DeleteRoomResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*DeleteRoomResponse_Error_
	Type isDeleteRoomResponse_Type `protobuf_oneof:"type"`
}

func (x *DeleteRoomResponse) Reset() {
	*x = DeleteRoomResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[3]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*DeleteRoomResponse) ProtoMessage() {}

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

// Deprecated: Use DeleteRoomResponse.ProtoReflect.Descriptor instead.
func (*DeleteRoomResponse) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{3}
}

func (m *DeleteRoomResponse) GetType() isDeleteRoomResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *DeleteRoomResponse) GetError() *DeleteRoomResponse_Error {
	if x, ok := x.GetType().(*DeleteRoomResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isDeleteRoomResponse_Type interface {
	isDeleteRoomResponse_Type()
}

type DeleteRoomResponse_Error_ struct {
	// Ошибка
	Error *DeleteRoomResponse_Error `protobuf:"bytes,1,opt,name=error,proto3,oneof"`
}

func (*DeleteRoomResponse_Error_) isDeleteRoomResponse_Type() {}

// Запрос получения количества квартир
type GetRoomCountRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields
}

func (x *GetRoomCountRequest) Reset() {
	*x = GetRoomCountRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[4]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*GetRoomCountRequest) ProtoMessage() {}

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

// Deprecated: Use GetRoomCountRequest.ProtoReflect.Descriptor instead.
func (*GetRoomCountRequest) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{4}
}

// Ответ на запрос получения количества квартир
type GetRoomCountResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*GetRoomCountResponse_Data
	Type isGetRoomCountResponse_Type `protobuf_oneof:"type"`
}

func (x *GetRoomCountResponse) Reset() {
	*x = GetRoomCountResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[5]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*GetRoomCountResponse) ProtoMessage() {}

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

// Deprecated: Use GetRoomCountResponse.ProtoReflect.Descriptor instead.
func (*GetRoomCountResponse) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{5}
}

func (m *GetRoomCountResponse) GetType() isGetRoomCountResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *GetRoomCountResponse) GetData() int32 {
	if x, ok := x.GetType().(*GetRoomCountResponse_Data); ok {
		return x.Data
	}
	return 0
}

type isGetRoomCountResponse_Type interface {
	isGetRoomCountResponse_Type()
}

type GetRoomCountResponse_Data struct {
	// Всего количество
	Data int32 `protobuf:"varint,1,opt,name=data,proto3,oneof"`
}

func (*GetRoomCountResponse_Data) isGetRoomCountResponse_Type() {}

// Запрос получения списка настроек квартир
type GetRoomListRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Вариант разбиения на страницы
	//
	// Types that are assignable to Pagination:
	//
	//	*GetRoomListRequest_Paging
	Pagination isGetRoomListRequest_Pagination `protobuf_oneof:"pagination"`
}

func (x *GetRoomListRequest) Reset() {
	*x = GetRoomListRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[6]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*GetRoomListRequest) ProtoMessage() {}

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

// Deprecated: Use GetRoomListRequest.ProtoReflect.Descriptor instead.
func (*GetRoomListRequest) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{6}
}

func (m *GetRoomListRequest) GetPagination() isGetRoomListRequest_Pagination {
	if m != nil {
		return m.Pagination
	}
	return nil
}

func (x *GetRoomListRequest) GetPaging() *RoomPaging {
	if x, ok := x.GetPagination().(*GetRoomListRequest_Paging); ok {
		return x.Paging
	}
	return nil
}

type isGetRoomListRequest_Pagination interface {
	isGetRoomListRequest_Pagination()
}

type GetRoomListRequest_Paging struct {
	// Постраничный вывод
	Paging *RoomPaging `protobuf:"bytes,1,opt,name=paging,proto3,oneof"`
}

func (*GetRoomListRequest_Paging) isGetRoomListRequest_Pagination() {}

// Ответ на запрос получения списка настроек квартир
type GetRoomListResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Список Room
	Data []*Room `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
}

func (x *GetRoomListResponse) Reset() {
	*x = GetRoomListResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[7]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*GetRoomListResponse) ProtoMessage() {}

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

// Deprecated: Use GetRoomListResponse.ProtoReflect.Descriptor instead.
func (*GetRoomListResponse) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{7}
}

func (x *GetRoomListResponse) GetData() []*Room {
	if x != nil {
		return x.Data
	}
	return nil
}

// Запрос получения настроек квартиры
type GetRoomRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Номер квартиры
	RoomNumber string `protobuf:"bytes,1,opt,name=room_number,json=roomNumber,proto3" json:"room_number,omitempty"`
}

func (x *GetRoomRequest) Reset() {
	*x = GetRoomRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[8]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*GetRoomRequest) ProtoMessage() {}

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

// Deprecated: Use GetRoomRequest.ProtoReflect.Descriptor instead.
func (*GetRoomRequest) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{8}
}

func (x *GetRoomRequest) GetRoomNumber() string {
	if x != nil {
		return x.RoomNumber
	}
	return ""
}

// Ответ на запрос получения настроек квартиры
type GetRoomResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*GetRoomResponse_Data
	Type isGetRoomResponse_Type `protobuf_oneof:"type"`
}

func (x *GetRoomResponse) Reset() {
	*x = GetRoomResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[9]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*GetRoomResponse) ProtoMessage() {}

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

// Deprecated: Use GetRoomResponse.ProtoReflect.Descriptor instead.
func (*GetRoomResponse) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{9}
}

func (m *GetRoomResponse) GetType() isGetRoomResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *GetRoomResponse) GetData() *Room {
	if x, ok := x.GetType().(*GetRoomResponse_Data); ok {
		return x.Data
	}
	return nil
}

type isGetRoomResponse_Type interface {
	isGetRoomResponse_Type()
}

type GetRoomResponse_Data struct {
	// Квартира
	Data *Room `protobuf:"bytes,1,opt,name=data,proto3,oneof"`
}

func (*GetRoomResponse_Data) isGetRoomResponse_Type() {}

// Квартира
type Room struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Номер квартиры
	RoomNumber string `protobuf:"bytes,1,opt,name=room_number,json=roomNumber,proto3" json:"room_number,omitempty"`
	// Номер Sip-переадресации вызова.
	// Диапазон: 5..200
	SipForwardingNumber string `protobuf:"bytes,2,opt,name=sip_forwarding_number,json=sipForwardingNumber,proto3" json:"sip_forwarding_number,omitempty"`
	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*Room_AnalogPhoneCmsNumber
	//	*Room_AnalogPhoneDigitalNumber
	Type isRoom_Type `protobuf_oneof:"type"`
	// Признак блокировки аналоговой (CMS) или адресно-цифровой (digital headset) трубки
	IsAnalogPhoneBlocked bool `protobuf:"varint,5,opt,name=is_analog_phone_blocked,json=isAnalogPhoneBlocked,proto3" json:"is_analog_phone_blocked,omitempty"`
}

func (x *Room) Reset() {
	*x = Room{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[10]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*Room) ProtoMessage() {}

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

// Deprecated: Use Room.ProtoReflect.Descriptor instead.
func (*Room) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{10}
}

func (x *Room) GetRoomNumber() string {
	if x != nil {
		return x.RoomNumber
	}
	return ""
}

func (x *Room) GetSipForwardingNumber() string {
	if x != nil {
		return x.SipForwardingNumber
	}
	return ""
}

func (m *Room) GetType() isRoom_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *Room) GetAnalogPhoneCmsNumber() string {
	if x, ok := x.GetType().(*Room_AnalogPhoneCmsNumber); ok {
		return x.AnalogPhoneCmsNumber
	}
	return ""
}

func (x *Room) GetAnalogPhoneDigitalNumber() int32 {
	if x, ok := x.GetType().(*Room_AnalogPhoneDigitalNumber); ok {
		return x.AnalogPhoneDigitalNumber
	}
	return 0
}

func (x *Room) GetIsAnalogPhoneBlocked() bool {
	if x != nil {
		return x.IsAnalogPhoneBlocked
	}
	return false
}

type isRoom_Type interface {
	isRoom_Type()
}

type Room_AnalogPhoneCmsNumber struct {
	// Номер координатно-матричной аналоговой трубки.
	// Где пример значения K1E9D8 - это К1 = коммутатор 1; Е9 = единицы 9; Д8 = десятки 8.
	// Паттерн: /^[A-Za-z]\d[A-Za-z]\d[A-Za-z]\d$/
	AnalogPhoneCmsNumber string `protobuf:"bytes,3,opt,name=analog_phone_cms_number,json=analogPhoneCmsNumber,proto3,oneof"`
}

type Room_AnalogPhoneDigitalNumber struct {
	// Номер цифровой трубки.
	// Диапазон: 1..255
	AnalogPhoneDigitalNumber int32 `protobuf:"varint,4,opt,name=analog_phone_digital_number,json=analogPhoneDigitalNumber,proto3,oneof"`
}

func (*Room_AnalogPhoneCmsNumber) isRoom_Type() {}

func (*Room_AnalogPhoneDigitalNumber) isRoom_Type() {}

// Фильтр квартир.
// При передаче массива в параметр фильтра элементы массива работают в выборке через ИЛИ
type RoomFilter struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// По номерам квартир.
	// При пустом массиве удалятся все квартиры
	RoomNumbers []string `protobuf:"bytes,1,rep,name=room_numbers,json=roomNumbers,proto3" json:"room_numbers,omitempty"`
}

func (x *RoomFilter) Reset() {
	*x = RoomFilter{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[11]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*RoomFilter) ProtoMessage() {}

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

// Deprecated: Use RoomFilter.ProtoReflect.Descriptor instead.
func (*RoomFilter) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{11}
}

func (x *RoomFilter) GetRoomNumbers() []string {
	if x != nil {
		return x.RoomNumbers
	}
	return nil
}

// Постраничный вывод
type RoomPaging struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Количество записей на страницу.
	// Если значение 0 (не передано), то будет взято значение по умолчанию.
	// # Диапазон: 0..100.
	// # По умолчанию: 20
	Limit int32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	// Сдвиг.
	// # Диапазон: 0..2147483647
	Offset int32 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
}

func (x *RoomPaging) Reset() {
	*x = RoomPaging{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[12]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*RoomPaging) ProtoMessage() {}

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

// Deprecated: Use RoomPaging.ProtoReflect.Descriptor instead.
func (*RoomPaging) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{12}
}

func (x *RoomPaging) GetLimit() int32 {
	if x != nil {
		return x.Limit
	}
	return 0
}

func (x *RoomPaging) GetOffset() int32 {
	if x != nil {
		return x.Offset
	}
	return 0
}

// Запрос сохранения списка настроек квартиры
type SaveRoomListRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Список Room
	Data []*Room `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
}

func (x *SaveRoomListRequest) Reset() {
	*x = SaveRoomListRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[13]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*SaveRoomListRequest) ProtoMessage() {}

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

// Deprecated: Use SaveRoomListRequest.ProtoReflect.Descriptor instead.
func (*SaveRoomListRequest) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{13}
}

func (x *SaveRoomListRequest) GetData() []*Room {
	if x != nil {
		return x.Data
	}
	return nil
}

// Ответ на запрос сохранения списка настроек квартиры
type SaveRoomListResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Список Room
	Data []*Room `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
	// Список ошибок
	Errors []*SaveRoomListResponse_Error `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
}

func (x *SaveRoomListResponse) Reset() {
	*x = SaveRoomListResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[14]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*SaveRoomListResponse) ProtoMessage() {}

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

// Deprecated: Use SaveRoomListResponse.ProtoReflect.Descriptor instead.
func (*SaveRoomListResponse) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{14}
}

func (x *SaveRoomListResponse) GetData() []*Room {
	if x != nil {
		return x.Data
	}
	return nil
}

func (x *SaveRoomListResponse) GetErrors() []*SaveRoomListResponse_Error {
	if x != nil {
		return x.Errors
	}
	return nil
}

// Запрос сохранения настроек квартиры
type SaveRoomRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Квартира
	Data *Room `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}

func (x *SaveRoomRequest) Reset() {
	*x = SaveRoomRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[15]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*SaveRoomRequest) ProtoMessage() {}

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

// Deprecated: Use SaveRoomRequest.ProtoReflect.Descriptor instead.
func (*SaveRoomRequest) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{15}
}

func (x *SaveRoomRequest) GetData() *Room {
	if x != nil {
		return x.Data
	}
	return nil
}

// Ответ на запрос сохранения настроек квартиры
type SaveRoomResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*SaveRoomResponse_Data
	//	*SaveRoomResponse_Error_
	Type isSaveRoomResponse_Type `protobuf_oneof:"type"`
}

func (x *SaveRoomResponse) Reset() {
	*x = SaveRoomResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[16]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*SaveRoomResponse) ProtoMessage() {}

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

// Deprecated: Use SaveRoomResponse.ProtoReflect.Descriptor instead.
func (*SaveRoomResponse) Descriptor() ([]byte, []int) {
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP(), []int{16}
}

func (m *SaveRoomResponse) GetType() isSaveRoomResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *SaveRoomResponse) GetData() *Room {
	if x, ok := x.GetType().(*SaveRoomResponse_Data); ok {
		return x.Data
	}
	return nil
}

func (x *SaveRoomResponse) GetError() *SaveRoomResponse_Error {
	if x, ok := x.GetType().(*SaveRoomResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isSaveRoomResponse_Type interface {
	isSaveRoomResponse_Type()
}

type SaveRoomResponse_Data struct {
	// Квартира
	Data *Room `protobuf:"bytes,1,opt,name=data,proto3,oneof"`
}

type SaveRoomResponse_Error_ struct {
	// Ошибка
	Error *SaveRoomResponse_Error `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

func (*SaveRoomResponse_Data) isSaveRoomResponse_Type() {}

func (*SaveRoomResponse_Error_) isSaveRoomResponse_Type() {}

// Ошибка запроса
type DeleteRoomListResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*DeleteRoomListResponse_Error_Validation
	Reason isDeleteRoomListResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *DeleteRoomListResponse_Error) Reset() {
	*x = DeleteRoomListResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[17]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*DeleteRoomListResponse_Error) ProtoMessage() {}

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

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

func (m *DeleteRoomListResponse_Error) GetReason() isDeleteRoomListResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *DeleteRoomListResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*DeleteRoomListResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isDeleteRoomListResponse_Error_Reason interface {
	isDeleteRoomListResponse_Error_Reason()
}

type DeleteRoomListResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*DeleteRoomListResponse_Error_Validation) isDeleteRoomListResponse_Error_Reason() {}

// Ошибка запроса
type DeleteRoomResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*DeleteRoomResponse_Error_Validation
	Reason isDeleteRoomResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *DeleteRoomResponse_Error) Reset() {
	*x = DeleteRoomResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[18]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*DeleteRoomResponse_Error) ProtoMessage() {}

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

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

func (m *DeleteRoomResponse_Error) GetReason() isDeleteRoomResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *DeleteRoomResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*DeleteRoomResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isDeleteRoomResponse_Error_Reason interface {
	isDeleteRoomResponse_Error_Reason()
}

type DeleteRoomResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*DeleteRoomResponse_Error_Validation) isDeleteRoomResponse_Error_Reason() {}

// Ошибка запроса
type SaveRoomListResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Номер квартиры
	RoomNumber string `protobuf:"bytes,1,opt,name=room_number,json=roomNumber,proto3" json:"room_number,omitempty"`
	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*SaveRoomListResponse_Error_Validation
	Reason isSaveRoomListResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *SaveRoomListResponse_Error) Reset() {
	*x = SaveRoomListResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[19]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*SaveRoomListResponse_Error) ProtoMessage() {}

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

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

func (x *SaveRoomListResponse_Error) GetRoomNumber() string {
	if x != nil {
		return x.RoomNumber
	}
	return ""
}

func (m *SaveRoomListResponse_Error) GetReason() isSaveRoomListResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *SaveRoomListResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*SaveRoomListResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isSaveRoomListResponse_Error_Reason interface {
	isSaveRoomListResponse_Error_Reason()
}

type SaveRoomListResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,2,opt,name=validation,proto3,oneof"`
}

func (*SaveRoomListResponse_Error_Validation) isSaveRoomListResponse_Error_Reason() {}

// Ошибка запроса
type SaveRoomResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*SaveRoomResponse_Error_Validation
	Reason isSaveRoomResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *SaveRoomResponse_Error) Reset() {
	*x = SaveRoomResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[20]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

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

func (*SaveRoomResponse_Error) ProtoMessage() {}

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

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

func (m *SaveRoomResponse_Error) GetReason() isSaveRoomResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *SaveRoomResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*SaveRoomResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isSaveRoomResponse_Error_Reason interface {
	isSaveRoomResponse_Error_Reason()
}

type SaveRoomResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*SaveRoomResponse_Error_Validation) isSaveRoomResponse_Error_Reason() {}

var File_deviceapis_device_v1_deviceapis_device_room_v1_proto protoreflect.FileDescriptor

var file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDesc = []byte{
	0x0a, 0x34, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x65, 0x76,
	0x69, 0x63, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69,
	0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x76, 0x31,
	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70,
	0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x36, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f,
	0x76, 0x31, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x5f, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x5f, 0x76, 0x31, 0x2e, 0x70,
	0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69,
	0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f,
	0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66,
	0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72,
	0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d,
	0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
	0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72,
	0x6f, 0x74, 0x6f, 0x22, 0x51, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f,
	0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x06,
	0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06,
	0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x22, 0xde, 0x01, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74,
	0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
	0x65, 0x12, 0x14, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48,
	0x00, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x4a, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
	0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61,
	0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65,
	0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
	0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x05, 0x65, 0x72,
	0x72, 0x6f, 0x72, 0x1a, 0x5a, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x47, 0x0a, 0x0a,
	0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
	0x32, 0x25, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
	0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64,
	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42,
	0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x43, 0x0a, 0x11, 0x44, 0x65, 0x6c, 0x65, 0x74,
	0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x0b,
	0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
	0x09, 0x42, 0x0d, 0x92, 0x41, 0x07, 0x4a, 0x05, 0x22, 0x33, 0x32, 0x35, 0x22, 0xe0, 0x41, 0x02,
	0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xc0, 0x01, 0x0a,
	0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f,
	0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
	0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
	0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72,
	0x6f, 0x72, 0x48, 0x00, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x5a, 0x0a, 0x05, 0x45,
	0x72, 0x72, 0x6f, 0x72, 0x12, 0x47, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
	0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e,
	0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
	0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a,
	0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22,
	0x15, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52,
	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x34, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f,
	0x6d, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14,
	0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04,
	0x64, 0x61, 0x74, 0x61, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x5e, 0x0a, 0x12,
	0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
	0x73, 0x74, 0x12, 0x3a, 0x0a, 0x06, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x20, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
	0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61,
	0x67, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x42, 0x0c,
	0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x45, 0x0a, 0x13,
	0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
	0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28,
	0x0b, 0x32, 0x1a, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x04, 0x64,
	0x61, 0x74, 0x61, 0x22, 0x40, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65,
	0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x0b, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x75,
	0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0x92, 0x41, 0x07, 0x4a,
	0x05, 0x22, 0x33, 0x32, 0x35, 0x22, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x4e,
	0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x4b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d,
	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x30, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
	0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61,
	0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f,
	0x6f, 0x6d, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79,
	0x70, 0x65, 0x22, 0xea, 0x02, 0x0a, 0x04, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x2e, 0x0a, 0x0b, 0x72,
	0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
	0x42, 0x0d, 0x92, 0x41, 0x07, 0x4a, 0x05, 0x22, 0x33, 0x32, 0x35, 0x22, 0xe0, 0x41, 0x02, 0x52,
	0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x52, 0x0a, 0x15, 0x73,
	0x69, 0x70, 0x5f, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x75,
	0x6d, 0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1e, 0x92, 0x41, 0x1b, 0x4a,
	0x13, 0x22, 0x30, 0x30, 0x34, 0x31, 0x30, 0x38, 0x33, 0x36, 0x33, 0x30, 0x30, 0x31, 0x34, 0x4c,
	0x38, 0x33, 0x31, 0x22, 0x78, 0xc8, 0x01, 0x80, 0x01, 0x05, 0x52, 0x13, 0x73, 0x69, 0x70, 0x46,
	0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12,
	0x46, 0x0a, 0x17, 0x61, 0x6e, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f,
	0x63, 0x6d, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
	0x42, 0x0d, 0x92, 0x41, 0x0a, 0x4a, 0x08, 0x22, 0x4b, 0x31, 0x45, 0x39, 0x44, 0x38, 0x22, 0x48,
	0x00, 0x52, 0x14, 0x61, 0x6e, 0x61, 0x6c, 0x6f, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6d,
	0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x4b, 0x0a, 0x1b, 0x61, 0x6e, 0x61, 0x6c, 0x6f,
	0x67, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x64, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x5f,
	0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x42, 0x0a, 0x92, 0x41,
	0x07, 0x4a, 0x05, 0x22, 0x32, 0x33, 0x34, 0x22, 0x48, 0x00, 0x52, 0x18, 0x61, 0x6e, 0x61, 0x6c,
	0x6f, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x44, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x4e, 0x75,
	0x6d, 0x62, 0x65, 0x72, 0x12, 0x41, 0x0a, 0x17, 0x69, 0x73, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x6f,
	0x67, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x64, 0x18,
	0x05, 0x20, 0x01, 0x28, 0x08, 0x42, 0x0a, 0x92, 0x41, 0x07, 0x4a, 0x05, 0x66, 0x61, 0x6c, 0x73,
	0x65, 0x52, 0x14, 0x69, 0x73, 0x41, 0x6e, 0x61, 0x6c, 0x6f, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65,
	0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22,
	0x2f, 0x0a, 0x0a, 0x52, 0x6f, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x21, 0x0a,
	0x0c, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20,
	0x03, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x6f, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x73,
	0x22, 0x3a, 0x0a, 0x0a, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x12, 0x14,
	0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c,
	0x69, 0x6d, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
	0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x45, 0x0a, 0x13,
	0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
	0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28,
	0x0b, 0x32, 0x1a, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x04, 0x64,
	0x61, 0x74, 0x61, 0x22, 0x9d, 0x02, 0x0a, 0x14, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d,
	0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x04,
	0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x64, 0x65, 0x76,
	0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76,
	0x31, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x48, 0x0a, 0x06,
	0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x2e, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74,
	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x06,
	0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x1a, 0x8a, 0x01, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72,
	0x12, 0x2e, 0x0a, 0x0b, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
	0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0x92, 0x41, 0x07, 0x4a, 0x05, 0x22, 0x33, 0x32, 0x35,
	0x22, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
	0x12, 0x47, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
	0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69,
	0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76,
	0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61,
	0x73, 0x6f, 0x6e, 0x22, 0x46, 0x0a, 0x0f, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x52,
	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x33, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01,
	0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x6f, 0x6d,
	0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xee, 0x01, 0x0a, 0x10,
	0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
	0x12, 0x30, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
	0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61,
	0x74, 0x61, 0x12, 0x44, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
	0x0b, 0x32, 0x2c, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f,
	0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
	0x00, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x5a, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f,
	0x72, 0x12, 0x47, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
	0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70,
	0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c,
	0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a,
	0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65,
	0x61, 0x73, 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x32, 0xc8, 0x07, 0x0a,
	0x0b, 0x52, 0x6f, 0x6f, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x8a, 0x01, 0x0a,
	0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x27, 0x2e, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e,
	0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x71,
	0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65,
	0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x29,
	0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x2a, 0x21, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f,
	0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x7b, 0x72, 0x6f, 0x6f,
	0x6d, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x7d, 0x12, 0x8d, 0x01, 0x0a, 0x0e, 0x44, 0x65,
	0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2b, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
	0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31,
	0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52,
	0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x2a,
	0x18, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f,
	0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x81, 0x01, 0x0a, 0x07, 0x47, 0x65,
	0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x24, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70,
	0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
	0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e,
	0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
	0x73, 0x65, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x12, 0x21, 0x2f, 0x64, 0x65, 0x76,
	0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f,
	0x7b, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x7d, 0x12, 0x88, 0x01,
	0x0a, 0x0c, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x29,
	0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x6f, 0x75,
	0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31,
	0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x12, 0x19, 0x2f,
	0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x6f,
	0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x84, 0x01, 0x0a, 0x0b, 0x47, 0x65, 0x74,
	0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e,
	0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
	0x73, 0x74, 0x1a, 0x29, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
	0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f,
	0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x20, 0x82,
	0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x12, 0x18, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x61,
	0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12,
	0x79, 0x0a, 0x08, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x25, 0x2e, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e,
	0x76, 0x31, 0x2e, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65,
	0x73, 0x74, 0x1a, 0x26, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
	0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f,
	0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93,
	0x02, 0x18, 0x3a, 0x01, 0x2a, 0x22, 0x13, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x61,
	0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x12, 0x8a, 0x01, 0x0a, 0x0c, 0x53,
	0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x2e, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e,
	0x76, 0x31, 0x2e, 0x53, 0x61, 0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52,
	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61,
	0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x61,
	0x76, 0x65, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
	0x73, 0x65, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x3a, 0x01, 0x2a, 0x22, 0x18, 0x2f,
	0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x6f,
	0x6f, 0x6d, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x42, 0xaf, 0x01, 0x0a, 0x17, 0x72, 0x75, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x42, 0x17, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x44,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x56, 0x31, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x48, 0x03, 0x50, 0x00,
	0x5a, 0x15, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x5f, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x5f, 0x76, 0x31, 0xd8, 0x01, 0x01, 0xf8, 0x01, 0x01, 0xa2, 0x02, 0x12,
	0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x41, 0x50, 0x49, 0x53, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45,
	0x56, 0x31, 0xaa, 0x02, 0x14, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
	0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x14, 0x44, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x5c, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5c, 0x56, 0x31,
	0xea, 0x02, 0x16, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x61, 0x70, 0x69, 0x73, 0x3a, 0x3a, 0x44,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
	0x33,
}

var (
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescOnce sync.Once
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescData = file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDesc
)

func file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescGZIP() []byte {
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescOnce.Do(func() {
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescData = protoimpl.X.CompressGZIP(file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescData)
	})
	return file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDescData
}

var file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes = make([]protoimpl.MessageInfo, 21)
var file_deviceapis_device_v1_deviceapis_device_room_v1_proto_goTypes = []interface{}{
	(*DeleteRoomListRequest)(nil),        // 0: deviceapis.device.v1.DeleteRoomListRequest
	(*DeleteRoomListResponse)(nil),       // 1: deviceapis.device.v1.DeleteRoomListResponse
	(*DeleteRoomRequest)(nil),            // 2: deviceapis.device.v1.DeleteRoomRequest
	(*DeleteRoomResponse)(nil),           // 3: deviceapis.device.v1.DeleteRoomResponse
	(*GetRoomCountRequest)(nil),          // 4: deviceapis.device.v1.GetRoomCountRequest
	(*GetRoomCountResponse)(nil),         // 5: deviceapis.device.v1.GetRoomCountResponse
	(*GetRoomListRequest)(nil),           // 6: deviceapis.device.v1.GetRoomListRequest
	(*GetRoomListResponse)(nil),          // 7: deviceapis.device.v1.GetRoomListResponse
	(*GetRoomRequest)(nil),               // 8: deviceapis.device.v1.GetRoomRequest
	(*GetRoomResponse)(nil),              // 9: deviceapis.device.v1.GetRoomResponse
	(*Room)(nil),                         // 10: deviceapis.device.v1.Room
	(*RoomFilter)(nil),                   // 11: deviceapis.device.v1.RoomFilter
	(*RoomPaging)(nil),                   // 12: deviceapis.device.v1.RoomPaging
	(*SaveRoomListRequest)(nil),          // 13: deviceapis.device.v1.SaveRoomListRequest
	(*SaveRoomListResponse)(nil),         // 14: deviceapis.device.v1.SaveRoomListResponse
	(*SaveRoomRequest)(nil),              // 15: deviceapis.device.v1.SaveRoomRequest
	(*SaveRoomResponse)(nil),             // 16: deviceapis.device.v1.SaveRoomResponse
	(*DeleteRoomListResponse_Error)(nil), // 17: deviceapis.device.v1.DeleteRoomListResponse.Error
	(*DeleteRoomResponse_Error)(nil),     // 18: deviceapis.device.v1.DeleteRoomResponse.Error
	(*SaveRoomListResponse_Error)(nil),   // 19: deviceapis.device.v1.SaveRoomListResponse.Error
	(*SaveRoomResponse_Error)(nil),       // 20: deviceapis.device.v1.SaveRoomResponse.Error
	(*ValidationError)(nil),              // 21: deviceapis.device.v1.ValidationError
}
var file_deviceapis_device_v1_deviceapis_device_room_v1_proto_depIdxs = []int32{
	11, // 0: deviceapis.device.v1.DeleteRoomListRequest.filter:type_name -> deviceapis.device.v1.RoomFilter
	17, // 1: deviceapis.device.v1.DeleteRoomListResponse.error:type_name -> deviceapis.device.v1.DeleteRoomListResponse.Error
	18, // 2: deviceapis.device.v1.DeleteRoomResponse.error:type_name -> deviceapis.device.v1.DeleteRoomResponse.Error
	12, // 3: deviceapis.device.v1.GetRoomListRequest.paging:type_name -> deviceapis.device.v1.RoomPaging
	10, // 4: deviceapis.device.v1.GetRoomListResponse.data:type_name -> deviceapis.device.v1.Room
	10, // 5: deviceapis.device.v1.GetRoomResponse.data:type_name -> deviceapis.device.v1.Room
	10, // 6: deviceapis.device.v1.SaveRoomListRequest.data:type_name -> deviceapis.device.v1.Room
	10, // 7: deviceapis.device.v1.SaveRoomListResponse.data:type_name -> deviceapis.device.v1.Room
	19, // 8: deviceapis.device.v1.SaveRoomListResponse.errors:type_name -> deviceapis.device.v1.SaveRoomListResponse.Error
	10, // 9: deviceapis.device.v1.SaveRoomRequest.data:type_name -> deviceapis.device.v1.Room
	10, // 10: deviceapis.device.v1.SaveRoomResponse.data:type_name -> deviceapis.device.v1.Room
	20, // 11: deviceapis.device.v1.SaveRoomResponse.error:type_name -> deviceapis.device.v1.SaveRoomResponse.Error
	21, // 12: deviceapis.device.v1.DeleteRoomListResponse.Error.validation:type_name -> deviceapis.device.v1.ValidationError
	21, // 13: deviceapis.device.v1.DeleteRoomResponse.Error.validation:type_name -> deviceapis.device.v1.ValidationError
	21, // 14: deviceapis.device.v1.SaveRoomListResponse.Error.validation:type_name -> deviceapis.device.v1.ValidationError
	21, // 15: deviceapis.device.v1.SaveRoomResponse.Error.validation:type_name -> deviceapis.device.v1.ValidationError
	2,  // 16: deviceapis.device.v1.RoomService.DeleteRoom:input_type -> deviceapis.device.v1.DeleteRoomRequest
	0,  // 17: deviceapis.device.v1.RoomService.DeleteRoomList:input_type -> deviceapis.device.v1.DeleteRoomListRequest
	8,  // 18: deviceapis.device.v1.RoomService.GetRoom:input_type -> deviceapis.device.v1.GetRoomRequest
	4,  // 19: deviceapis.device.v1.RoomService.GetRoomCount:input_type -> deviceapis.device.v1.GetRoomCountRequest
	6,  // 20: deviceapis.device.v1.RoomService.GetRoomList:input_type -> deviceapis.device.v1.GetRoomListRequest
	15, // 21: deviceapis.device.v1.RoomService.SaveRoom:input_type -> deviceapis.device.v1.SaveRoomRequest
	13, // 22: deviceapis.device.v1.RoomService.SaveRoomList:input_type -> deviceapis.device.v1.SaveRoomListRequest
	3,  // 23: deviceapis.device.v1.RoomService.DeleteRoom:output_type -> deviceapis.device.v1.DeleteRoomResponse
	1,  // 24: deviceapis.device.v1.RoomService.DeleteRoomList:output_type -> deviceapis.device.v1.DeleteRoomListResponse
	9,  // 25: deviceapis.device.v1.RoomService.GetRoom:output_type -> deviceapis.device.v1.GetRoomResponse
	5,  // 26: deviceapis.device.v1.RoomService.GetRoomCount:output_type -> deviceapis.device.v1.GetRoomCountResponse
	7,  // 27: deviceapis.device.v1.RoomService.GetRoomList:output_type -> deviceapis.device.v1.GetRoomListResponse
	16, // 28: deviceapis.device.v1.RoomService.SaveRoom:output_type -> deviceapis.device.v1.SaveRoomResponse
	14, // 29: deviceapis.device.v1.RoomService.SaveRoomList:output_type -> deviceapis.device.v1.SaveRoomListResponse
	23, // [23:30] is the sub-list for method output_type
	16, // [16:23] is the sub-list for method input_type
	16, // [16:16] is the sub-list for extension type_name
	16, // [16:16] is the sub-list for extension extendee
	0,  // [0:16] is the sub-list for field type_name
}

func init() { file_deviceapis_device_v1_deviceapis_device_room_v1_proto_init() }
func file_deviceapis_device_v1_deviceapis_device_room_v1_proto_init() {
	if File_deviceapis_device_v1_deviceapis_device_room_v1_proto != nil {
		return
	}
	file_deviceapis_device_v1_deviceapis_device_common_v1_proto_init()
	if !protoimpl.UnsafeEnabled {
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteRoomListRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteRoomListResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteRoomRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteRoomResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetRoomCountRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetRoomCountResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetRoomListRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetRoomListResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetRoomRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetRoomResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*Room); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*RoomFilter); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*RoomPaging); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*SaveRoomListRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*SaveRoomListResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*SaveRoomRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*SaveRoomResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteRoomListResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteRoomResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*SaveRoomListResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*SaveRoomResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[1].OneofWrappers = []interface{}{
		(*DeleteRoomListResponse_Data)(nil),
		(*DeleteRoomListResponse_Error_)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[3].OneofWrappers = []interface{}{
		(*DeleteRoomResponse_Error_)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[5].OneofWrappers = []interface{}{
		(*GetRoomCountResponse_Data)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[6].OneofWrappers = []interface{}{
		(*GetRoomListRequest_Paging)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[9].OneofWrappers = []interface{}{
		(*GetRoomResponse_Data)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[10].OneofWrappers = []interface{}{
		(*Room_AnalogPhoneCmsNumber)(nil),
		(*Room_AnalogPhoneDigitalNumber)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[16].OneofWrappers = []interface{}{
		(*SaveRoomResponse_Data)(nil),
		(*SaveRoomResponse_Error_)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[17].OneofWrappers = []interface{}{
		(*DeleteRoomListResponse_Error_Validation)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[18].OneofWrappers = []interface{}{
		(*DeleteRoomResponse_Error_Validation)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[19].OneofWrappers = []interface{}{
		(*SaveRoomListResponse_Error_Validation)(nil),
	}
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes[20].OneofWrappers = []interface{}{
		(*SaveRoomResponse_Error_Validation)(nil),
	}
	type x struct{}
	out := protoimpl.TypeBuilder{
		File: protoimpl.DescBuilder{
			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
			RawDescriptor: file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDesc,
			NumEnums:      0,
			NumMessages:   21,
			NumExtensions: 0,
			NumServices:   1,
		},
		GoTypes:           file_deviceapis_device_v1_deviceapis_device_room_v1_proto_goTypes,
		DependencyIndexes: file_deviceapis_device_v1_deviceapis_device_room_v1_proto_depIdxs,
		MessageInfos:      file_deviceapis_device_v1_deviceapis_device_room_v1_proto_msgTypes,
	}.Build()
	File_deviceapis_device_v1_deviceapis_device_room_v1_proto = out.File
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_rawDesc = nil
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_goTypes = nil
	file_deviceapis_device_v1_deviceapis_device_room_v1_proto_depIdxs = nil
}
