punishments

package
v0.9.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 11, 2020 License: MIT Imports: 27 Imported by: 2

Documentation

Overview

Package punishments is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	PunishmentType_name = map[int32]string{
		0: "UNKNOWN_PUNISHMENT",
		1: "BAN",
		2: "BLOCK",
		3: "WARN",
		4: "ADMIN_JAIL",
	}
	PunishmentType_value = map[string]int32{
		"UNKNOWN_PUNISHMENT": 0,
		"BAN":                1,
		"BLOCK":              2,
		"WARN":               3,
		"ADMIN_JAIL":         4,
	}
)

Enum value maps for PunishmentType.

View Source
var (
	AcquittalsType_name = map[int32]string{
		0: "UNKNOWN_ACQUITAL",
		1: "UNBAN",
		2: "UNBLOCK",
		3: "UNWARN",
		4: "UN_ADMIN_JAIL",
	}
	AcquittalsType_value = map[string]int32{
		"UNKNOWN_ACQUITAL": 0,
		"UNBAN":            1,
		"UNBLOCK":          2,
		"UNWARN":           3,
		"UN_ADMIN_JAIL":    4,
	}
)

Enum value maps for AcquittalsType.

View Source
var File_punishments_punishments_proto protoreflect.FileDescriptor

Functions

func RegisterMruVPunishmentsServiceHandler

func RegisterMruVPunishmentsServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterMruVPunishmentsServiceHandler registers the http handlers for service MruVPunishmentsService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterMruVPunishmentsServiceHandlerClient

func RegisterMruVPunishmentsServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client MruVPunishmentsServiceClient) error

RegisterMruVPunishmentsServiceHandlerClient registers the http handlers for service MruVPunishmentsService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "MruVPunishmentsServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "MruVPunishmentsServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "MruVPunishmentsServiceClient" to call the correct interceptors.

func RegisterMruVPunishmentsServiceHandlerFromEndpoint

func RegisterMruVPunishmentsServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterMruVPunishmentsServiceHandlerFromEndpoint is same as RegisterMruVPunishmentsServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterMruVPunishmentsServiceHandlerServer

func RegisterMruVPunishmentsServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server MruVPunishmentsServiceServer) error

RegisterMruVPunishmentsServiceHandlerServer registers the http handlers for service MruVPunishmentsService to "mux". UnaryRPC :call MruVPunishmentsServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterMruVPunishmentsServiceHandlerFromEndpoint instead.

func RegisterMruVPunishmentsServiceServer

func RegisterMruVPunishmentsServiceServer(s *grpc.Server, srv MruVPunishmentsServiceServer)

Types

type AcquittalsType

type AcquittalsType int32
const (
	AcquittalsType_UNKNOWN_ACQUITAL AcquittalsType = 0
	AcquittalsType_UNBAN            AcquittalsType = 1
	AcquittalsType_UNBLOCK          AcquittalsType = 2
	AcquittalsType_UNWARN           AcquittalsType = 3
	AcquittalsType_UN_ADMIN_JAIL    AcquittalsType = 4
)

func (AcquittalsType) Descriptor added in v0.8.4

func (AcquittalsType) Enum added in v0.8.4

func (x AcquittalsType) Enum() *AcquittalsType

func (AcquittalsType) EnumDescriptor deprecated

func (AcquittalsType) EnumDescriptor() ([]byte, []int)

Deprecated: Use AcquittalsType.Descriptor instead.

func (AcquittalsType) Number added in v0.8.4

func (AcquittalsType) String

func (x AcquittalsType) String() string

func (AcquittalsType) Type added in v0.8.4

type AdminJailMessage

type AdminJailMessage struct {

	// A player, that owns a jailed character.
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	// Character that has been jailed.
	Character uint32 `protobuf:"varint,2,opt,name=character,proto3" json:"character,omitempty"`
	// An admin jail reason.
	Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that jail a player. 0 = system jail.
	Admin uint32 `protobuf:"varint,4,opt,name=admin,proto3" json:"admin,omitempty"`
	// Date on which an admin jail was issued in Unix time.
	AjDate int64 `protobuf:"varint,5,opt,name=aj_date,json=ajDate,proto3" json:"aj_date,omitempty"`
	// Time of admin jail in seconds.
	JailTime uint32 `protobuf:"varint,6,opt,name=jail_time,json=jailTime,proto3" json:"jail_time,omitempty"`
	// contains filtered or unexported fields
}

func (*AdminJailMessage) Descriptor deprecated

func (*AdminJailMessage) Descriptor() ([]byte, []int)

Deprecated: Use AdminJailMessage.ProtoReflect.Descriptor instead.

func (*AdminJailMessage) GetAdmin

func (x *AdminJailMessage) GetAdmin() uint32

func (*AdminJailMessage) GetAjDate

func (x *AdminJailMessage) GetAjDate() int64

func (*AdminJailMessage) GetCharacter

func (x *AdminJailMessage) GetCharacter() uint32

func (*AdminJailMessage) GetJailTime

func (x *AdminJailMessage) GetJailTime() uint32

func (*AdminJailMessage) GetPlayer

func (x *AdminJailMessage) GetPlayer() uint32

func (*AdminJailMessage) GetReason

func (x *AdminJailMessage) GetReason() string

func (*AdminJailMessage) ProtoMessage

func (*AdminJailMessage) ProtoMessage()

func (*AdminJailMessage) ProtoReflect added in v0.8.4

func (x *AdminJailMessage) ProtoReflect() protoreflect.Message

func (*AdminJailMessage) Reset

func (x *AdminJailMessage) Reset()

func (*AdminJailMessage) String

func (x *AdminJailMessage) String() string

func (*AdminJailMessage) Validate

func (m *AdminJailMessage) Validate() error

Validate checks the field values on AdminJailMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type AdminJailMessageValidationError

type AdminJailMessageValidationError struct {
	// contains filtered or unexported fields
}

AdminJailMessageValidationError is the validation error returned by AdminJailMessage.Validate if the designated constraints aren't met.

func (AdminJailMessageValidationError) Cause

Cause function returns cause value.

func (AdminJailMessageValidationError) Error

Error satisfies the builtin error interface

func (AdminJailMessageValidationError) ErrorName

ErrorName returns error name.

func (AdminJailMessageValidationError) Field

Field function returns field value.

func (AdminJailMessageValidationError) Key

Key function returns key value.

func (AdminJailMessageValidationError) Reason

Reason function returns reason value.

type AdminJailRequest

type AdminJailRequest struct {
	Character uint32 `protobuf:"varint,1,opt,name=character,proto3" json:"character,omitempty"`
	// Admin jail time.
	Time uint32 `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	// Admin jail reason.
	Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that gave an admin jail to a player.
	Admin uint32 `protobuf:"varint,4,opt,name=admin,proto3" json:"admin,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `AdminJail`.

func (*AdminJailRequest) Descriptor deprecated

func (*AdminJailRequest) Descriptor() ([]byte, []int)

Deprecated: Use AdminJailRequest.ProtoReflect.Descriptor instead.

func (*AdminJailRequest) GetAdmin

func (x *AdminJailRequest) GetAdmin() uint32

func (*AdminJailRequest) GetCharacter

func (x *AdminJailRequest) GetCharacter() uint32

func (*AdminJailRequest) GetReason

func (x *AdminJailRequest) GetReason() string

func (*AdminJailRequest) GetTime

func (x *AdminJailRequest) GetTime() uint32

func (*AdminJailRequest) ProtoMessage

func (*AdminJailRequest) ProtoMessage()

func (*AdminJailRequest) ProtoReflect added in v0.8.4

func (x *AdminJailRequest) ProtoReflect() protoreflect.Message

func (*AdminJailRequest) Reset

func (x *AdminJailRequest) Reset()

func (*AdminJailRequest) String

func (x *AdminJailRequest) String() string

func (*AdminJailRequest) Validate

func (m *AdminJailRequest) Validate() error

Validate checks the field values on AdminJailRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type AdminJailRequestValidationError

type AdminJailRequestValidationError struct {
	// contains filtered or unexported fields
}

AdminJailRequestValidationError is the validation error returned by AdminJailRequest.Validate if the designated constraints aren't met.

func (AdminJailRequestValidationError) Cause

Cause function returns cause value.

func (AdminJailRequestValidationError) Error

Error satisfies the builtin error interface

func (AdminJailRequestValidationError) ErrorName

ErrorName returns error name.

func (AdminJailRequestValidationError) Field

Field function returns field value.

func (AdminJailRequestValidationError) Key

Key function returns key value.

func (AdminJailRequestValidationError) Reason

Reason function returns reason value.

type AdminJailResponse

type AdminJailResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `AdminJail`.

func (*AdminJailResponse) Descriptor deprecated

func (*AdminJailResponse) Descriptor() ([]byte, []int)

Deprecated: Use AdminJailResponse.ProtoReflect.Descriptor instead.

func (*AdminJailResponse) ProtoMessage

func (*AdminJailResponse) ProtoMessage()

func (*AdminJailResponse) ProtoReflect added in v0.8.4

func (x *AdminJailResponse) ProtoReflect() protoreflect.Message

func (*AdminJailResponse) Reset

func (x *AdminJailResponse) Reset()

func (*AdminJailResponse) String

func (x *AdminJailResponse) String() string

func (*AdminJailResponse) Validate

func (m *AdminJailResponse) Validate() error

Validate checks the field values on AdminJailResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type AdminJailResponseValidationError

type AdminJailResponseValidationError struct {
	// contains filtered or unexported fields
}

AdminJailResponseValidationError is the validation error returned by AdminJailResponse.Validate if the designated constraints aren't met.

func (AdminJailResponseValidationError) Cause

Cause function returns cause value.

func (AdminJailResponseValidationError) Error

Error satisfies the builtin error interface

func (AdminJailResponseValidationError) ErrorName

ErrorName returns error name.

func (AdminJailResponseValidationError) Field

Field function returns field value.

func (AdminJailResponseValidationError) Key

Key function returns key value.

func (AdminJailResponseValidationError) Reason

Reason function returns reason value.

type BanMessage

type BanMessage struct {
	Player    uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	Character uint32 `protobuf:"varint,2,opt,name=character,proto3" json:"character,omitempty"`
	Ip        string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	// Expiration date in Unix time.
	ExpirationDate int64 `protobuf:"varint,4,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
	// A ban reason.
	Reason string `protobuf:"bytes,5,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that banned a player. 0 = system ban.
	Admin uint32 `protobuf:"varint,6,opt,name=admin,proto3" json:"admin,omitempty"`
	// Date on which a ban was issued in Unix time.
	BanDate int64 `protobuf:"varint,7,opt,name=ban_date,json=banDate,proto3" json:"ban_date,omitempty"`
	// Ban status. True = active, false = deactivated.
	Active bool `protobuf:"varint,8,opt,name=active,proto3" json:"active,omitempty"`
	// Date of unban in Unix time.
	// This field is set only when ban was deactivated.
	UnbanDate int64 `protobuf:"varint,9,opt,name=unban_date,json=unbanDate,proto3" json:"unban_date,omitempty"`
	// Admin that deactivated this ban.
	// This field is set only when ban was deactivated.
	UnbanAdmin uint32 `protobuf:"varint,10,opt,name=unban_admin,json=unbanAdmin,proto3" json:"unban_admin,omitempty"`
	// contains filtered or unexported fields
}

func (*BanMessage) Descriptor deprecated

func (*BanMessage) Descriptor() ([]byte, []int)

Deprecated: Use BanMessage.ProtoReflect.Descriptor instead.

func (*BanMessage) GetActive

func (x *BanMessage) GetActive() bool

func (*BanMessage) GetAdmin

func (x *BanMessage) GetAdmin() uint32

func (*BanMessage) GetBanDate

func (x *BanMessage) GetBanDate() int64

func (*BanMessage) GetCharacter

func (x *BanMessage) GetCharacter() uint32

func (*BanMessage) GetExpirationDate

func (x *BanMessage) GetExpirationDate() int64

func (*BanMessage) GetIp

func (x *BanMessage) GetIp() string

func (*BanMessage) GetPlayer

func (x *BanMessage) GetPlayer() uint32

func (*BanMessage) GetReason

func (x *BanMessage) GetReason() string

func (*BanMessage) GetUnbanAdmin

func (x *BanMessage) GetUnbanAdmin() uint32

func (*BanMessage) GetUnbanDate

func (x *BanMessage) GetUnbanDate() int64

func (*BanMessage) ProtoMessage

func (*BanMessage) ProtoMessage()

func (*BanMessage) ProtoReflect added in v0.8.4

func (x *BanMessage) ProtoReflect() protoreflect.Message

func (*BanMessage) Reset

func (x *BanMessage) Reset()

func (*BanMessage) String

func (x *BanMessage) String() string

func (*BanMessage) Validate

func (m *BanMessage) Validate() error

Validate checks the field values on BanMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type BanMessageValidationError

type BanMessageValidationError struct {
	// contains filtered or unexported fields
}

BanMessageValidationError is the validation error returned by BanMessage.Validate if the designated constraints aren't met.

func (BanMessageValidationError) Cause

func (e BanMessageValidationError) Cause() error

Cause function returns cause value.

func (BanMessageValidationError) Error

Error satisfies the builtin error interface

func (BanMessageValidationError) ErrorName

func (e BanMessageValidationError) ErrorName() string

ErrorName returns error name.

func (BanMessageValidationError) Field

Field function returns field value.

func (BanMessageValidationError) Key

Key function returns key value.

func (BanMessageValidationError) Reason

func (e BanMessageValidationError) Reason() string

Reason function returns reason value.

type BanRequest

type BanRequest struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	// Player character that was accused.
	// Optional.
	Character uint32 `protobuf:"varint,2,opt,name=character,proto3" json:"character,omitempty"`
	Ip        string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	// Ban expiration time in days. 0 = permanent ban.
	Time uint32 `protobuf:"varint,4,opt,name=time,proto3" json:"time,omitempty"`
	// Ban reason.
	Reason string `protobuf:"bytes,5,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that banned a player. 0 = system ban.
	Admin uint32 `protobuf:"varint,6,opt,name=admin,proto3" json:"admin,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `Ban`.

func (*BanRequest) Descriptor deprecated

func (*BanRequest) Descriptor() ([]byte, []int)

Deprecated: Use BanRequest.ProtoReflect.Descriptor instead.

func (*BanRequest) GetAdmin

func (x *BanRequest) GetAdmin() uint32

func (*BanRequest) GetCharacter

func (x *BanRequest) GetCharacter() uint32

func (*BanRequest) GetIp

func (x *BanRequest) GetIp() string

func (*BanRequest) GetPlayer

func (x *BanRequest) GetPlayer() uint32

func (*BanRequest) GetReason

func (x *BanRequest) GetReason() string

func (*BanRequest) GetTime

func (x *BanRequest) GetTime() uint32

func (*BanRequest) ProtoMessage

func (*BanRequest) ProtoMessage()

func (*BanRequest) ProtoReflect added in v0.8.4

func (x *BanRequest) ProtoReflect() protoreflect.Message

func (*BanRequest) Reset

func (x *BanRequest) Reset()

func (*BanRequest) String

func (x *BanRequest) String() string

func (*BanRequest) Validate

func (m *BanRequest) Validate() error

Validate checks the field values on BanRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type BanRequestValidationError

type BanRequestValidationError struct {
	// contains filtered or unexported fields
}

BanRequestValidationError is the validation error returned by BanRequest.Validate if the designated constraints aren't met.

func (BanRequestValidationError) Cause

func (e BanRequestValidationError) Cause() error

Cause function returns cause value.

func (BanRequestValidationError) Error

Error satisfies the builtin error interface

func (BanRequestValidationError) ErrorName

func (e BanRequestValidationError) ErrorName() string

ErrorName returns error name.

func (BanRequestValidationError) Field

Field function returns field value.

func (BanRequestValidationError) Key

Key function returns key value.

func (BanRequestValidationError) Reason

func (e BanRequestValidationError) Reason() string

Reason function returns reason value.

type BanResponse

type BanResponse struct {
	BanId uint32 `protobuf:"varint,1,opt,name=ban_id,json=banId,proto3" json:"ban_id,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `Ban`.

func (*BanResponse) Descriptor deprecated

func (*BanResponse) Descriptor() ([]byte, []int)

Deprecated: Use BanResponse.ProtoReflect.Descriptor instead.

func (*BanResponse) GetBanId

func (x *BanResponse) GetBanId() uint32

func (*BanResponse) ProtoMessage

func (*BanResponse) ProtoMessage()

func (*BanResponse) ProtoReflect added in v0.8.4

func (x *BanResponse) ProtoReflect() protoreflect.Message

func (*BanResponse) Reset

func (x *BanResponse) Reset()

func (*BanResponse) String

func (x *BanResponse) String() string

func (*BanResponse) Validate

func (m *BanResponse) Validate() error

Validate checks the field values on BanResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type BanResponseValidationError

type BanResponseValidationError struct {
	// contains filtered or unexported fields
}

BanResponseValidationError is the validation error returned by BanResponse.Validate if the designated constraints aren't met.

func (BanResponseValidationError) Cause

Cause function returns cause value.

func (BanResponseValidationError) Error

Error satisfies the builtin error interface

func (BanResponseValidationError) ErrorName

func (e BanResponseValidationError) ErrorName() string

ErrorName returns error name.

func (BanResponseValidationError) Field

Field function returns field value.

func (BanResponseValidationError) Key

Key function returns key value.

func (BanResponseValidationError) Reason

Reason function returns reason value.

type BlockMessage

type BlockMessage struct {

	// A player, that owns a blocked character.
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	// Blocked character.
	Character uint32 `protobuf:"varint,2,opt,name=character,proto3" json:"character,omitempty"`
	// A block reason.
	Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that blocked a player. 0 = system block.
	Admin uint32 `protobuf:"varint,4,opt,name=admin,proto3" json:"admin,omitempty"`
	// Date on which a block was issued in Unix time.
	BlockDate int64 `protobuf:"varint,5,opt,name=block_date,json=blockDate,proto3" json:"block_date,omitempty"`
	Active    bool  `protobuf:"varint,6,opt,name=active,proto3" json:"active,omitempty"`
	// Date of unblock in Unix time.
	// This field is set only when a block was deactivated.
	UnblockDate int64 `protobuf:"varint,7,opt,name=unblock_date,json=unblockDate,proto3" json:"unblock_date,omitempty"`
	// An admin that unblocked a player.
	// This field is set only when a block was deactivated.
	UnblockAdmin uint32 `protobuf:"varint,8,opt,name=unblock_admin,json=unblockAdmin,proto3" json:"unblock_admin,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockMessage) Descriptor deprecated

func (*BlockMessage) Descriptor() ([]byte, []int)

Deprecated: Use BlockMessage.ProtoReflect.Descriptor instead.

func (*BlockMessage) GetActive

func (x *BlockMessage) GetActive() bool

func (*BlockMessage) GetAdmin

func (x *BlockMessage) GetAdmin() uint32

func (*BlockMessage) GetBlockDate

func (x *BlockMessage) GetBlockDate() int64

func (*BlockMessage) GetCharacter

func (x *BlockMessage) GetCharacter() uint32

func (*BlockMessage) GetPlayer

func (x *BlockMessage) GetPlayer() uint32

func (*BlockMessage) GetReason

func (x *BlockMessage) GetReason() string

func (*BlockMessage) GetUnblockAdmin

func (x *BlockMessage) GetUnblockAdmin() uint32

func (*BlockMessage) GetUnblockDate

func (x *BlockMessage) GetUnblockDate() int64

func (*BlockMessage) ProtoMessage

func (*BlockMessage) ProtoMessage()

func (*BlockMessage) ProtoReflect added in v0.8.4

func (x *BlockMessage) ProtoReflect() protoreflect.Message

func (*BlockMessage) Reset

func (x *BlockMessage) Reset()

func (*BlockMessage) String

func (x *BlockMessage) String() string

func (*BlockMessage) Validate

func (m *BlockMessage) Validate() error

Validate checks the field values on BlockMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type BlockMessageValidationError

type BlockMessageValidationError struct {
	// contains filtered or unexported fields
}

BlockMessageValidationError is the validation error returned by BlockMessage.Validate if the designated constraints aren't met.

func (BlockMessageValidationError) Cause

Cause function returns cause value.

func (BlockMessageValidationError) Error

Error satisfies the builtin error interface

func (BlockMessageValidationError) ErrorName

func (e BlockMessageValidationError) ErrorName() string

ErrorName returns error name.

func (BlockMessageValidationError) Field

Field function returns field value.

func (BlockMessageValidationError) Key

Key function returns key value.

func (BlockMessageValidationError) Reason

Reason function returns reason value.

type BlockRequest

type BlockRequest struct {
	Character uint32 `protobuf:"varint,1,opt,name=character,proto3" json:"character,omitempty"`
	// Block reason.
	Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that blocked a player. 0 = system ban.
	Admin uint32 `protobuf:"varint,3,opt,name=admin,proto3" json:"admin,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `Block`.

func (*BlockRequest) Descriptor deprecated

func (*BlockRequest) Descriptor() ([]byte, []int)

Deprecated: Use BlockRequest.ProtoReflect.Descriptor instead.

func (*BlockRequest) GetAdmin

func (x *BlockRequest) GetAdmin() uint32

func (*BlockRequest) GetCharacter

func (x *BlockRequest) GetCharacter() uint32

func (*BlockRequest) GetReason

func (x *BlockRequest) GetReason() string

func (*BlockRequest) ProtoMessage

func (*BlockRequest) ProtoMessage()

func (*BlockRequest) ProtoReflect added in v0.8.4

func (x *BlockRequest) ProtoReflect() protoreflect.Message

func (*BlockRequest) Reset

func (x *BlockRequest) Reset()

func (*BlockRequest) String

func (x *BlockRequest) String() string

func (*BlockRequest) Validate

func (m *BlockRequest) Validate() error

Validate checks the field values on BlockRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type BlockRequestValidationError

type BlockRequestValidationError struct {
	// contains filtered or unexported fields
}

BlockRequestValidationError is the validation error returned by BlockRequest.Validate if the designated constraints aren't met.

func (BlockRequestValidationError) Cause

Cause function returns cause value.

func (BlockRequestValidationError) Error

Error satisfies the builtin error interface

func (BlockRequestValidationError) ErrorName

func (e BlockRequestValidationError) ErrorName() string

ErrorName returns error name.

func (BlockRequestValidationError) Field

Field function returns field value.

func (BlockRequestValidationError) Key

Key function returns key value.

func (BlockRequestValidationError) Reason

Reason function returns reason value.

type BlockResponse

type BlockResponse struct {
	BlockId uint32 `protobuf:"varint,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `Block`.

func (*BlockResponse) Descriptor deprecated

func (*BlockResponse) Descriptor() ([]byte, []int)

Deprecated: Use BlockResponse.ProtoReflect.Descriptor instead.

func (*BlockResponse) GetBlockId

func (x *BlockResponse) GetBlockId() uint32

func (*BlockResponse) ProtoMessage

func (*BlockResponse) ProtoMessage()

func (*BlockResponse) ProtoReflect added in v0.8.4

func (x *BlockResponse) ProtoReflect() protoreflect.Message

func (*BlockResponse) Reset

func (x *BlockResponse) Reset()

func (*BlockResponse) String

func (x *BlockResponse) String() string

func (*BlockResponse) Validate

func (m *BlockResponse) Validate() error

Validate checks the field values on BlockResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type BlockResponseValidationError

type BlockResponseValidationError struct {
	// contains filtered or unexported fields
}

BlockResponseValidationError is the validation error returned by BlockResponse.Validate if the designated constraints aren't met.

func (BlockResponseValidationError) Cause

Cause function returns cause value.

func (BlockResponseValidationError) Error

Error satisfies the builtin error interface

func (BlockResponseValidationError) ErrorName

func (e BlockResponseValidationError) ErrorName() string

ErrorName returns error name.

func (BlockResponseValidationError) Field

Field function returns field value.

func (BlockResponseValidationError) Key

Key function returns key value.

func (BlockResponseValidationError) Reason

Reason function returns reason value.

type GetBanRequest

type GetBanRequest struct {
	Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `GetBan`.

func (*GetBanRequest) Descriptor deprecated

func (*GetBanRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetBanRequest.ProtoReflect.Descriptor instead.

func (*GetBanRequest) GetId

func (x *GetBanRequest) GetId() uint32

func (*GetBanRequest) ProtoMessage

func (*GetBanRequest) ProtoMessage()

func (*GetBanRequest) ProtoReflect added in v0.8.4

func (x *GetBanRequest) ProtoReflect() protoreflect.Message

func (*GetBanRequest) Reset

func (x *GetBanRequest) Reset()

func (*GetBanRequest) String

func (x *GetBanRequest) String() string

func (*GetBanRequest) Validate

func (m *GetBanRequest) Validate() error

Validate checks the field values on GetBanRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetBanRequestValidationError

type GetBanRequestValidationError struct {
	// contains filtered or unexported fields
}

GetBanRequestValidationError is the validation error returned by GetBanRequest.Validate if the designated constraints aren't met.

func (GetBanRequestValidationError) Cause

Cause function returns cause value.

func (GetBanRequestValidationError) Error

Error satisfies the builtin error interface

func (GetBanRequestValidationError) ErrorName

func (e GetBanRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetBanRequestValidationError) Field

Field function returns field value.

func (GetBanRequestValidationError) Key

Key function returns key value.

func (GetBanRequestValidationError) Reason

Reason function returns reason value.

type GetBlockRequest

type GetBlockRequest struct {
	Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `GetBlock`.

func (*GetBlockRequest) Descriptor deprecated

func (*GetBlockRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetBlockRequest.ProtoReflect.Descriptor instead.

func (*GetBlockRequest) GetId

func (x *GetBlockRequest) GetId() uint32

func (*GetBlockRequest) ProtoMessage

func (*GetBlockRequest) ProtoMessage()

func (*GetBlockRequest) ProtoReflect added in v0.8.4

func (x *GetBlockRequest) ProtoReflect() protoreflect.Message

func (*GetBlockRequest) Reset

func (x *GetBlockRequest) Reset()

func (*GetBlockRequest) String

func (x *GetBlockRequest) String() string

func (*GetBlockRequest) Validate

func (m *GetBlockRequest) Validate() error

Validate checks the field values on GetBlockRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetBlockRequestValidationError

type GetBlockRequestValidationError struct {
	// contains filtered or unexported fields
}

GetBlockRequestValidationError is the validation error returned by GetBlockRequest.Validate if the designated constraints aren't met.

func (GetBlockRequestValidationError) Cause

Cause function returns cause value.

func (GetBlockRequestValidationError) Error

Error satisfies the builtin error interface

func (GetBlockRequestValidationError) ErrorName

func (e GetBlockRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetBlockRequestValidationError) Field

Field function returns field value.

func (GetBlockRequestValidationError) Key

Key function returns key value.

func (GetBlockRequestValidationError) Reason

Reason function returns reason value.

type GetPlayerAdminJailRequest

type GetPlayerAdminJailRequest struct {
	Character uint32 `protobuf:"varint,1,opt,name=character,proto3" json:"character,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `GetPlayerAdminJail`.

func (*GetPlayerAdminJailRequest) Descriptor deprecated

func (*GetPlayerAdminJailRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPlayerAdminJailRequest.ProtoReflect.Descriptor instead.

func (*GetPlayerAdminJailRequest) GetCharacter

func (x *GetPlayerAdminJailRequest) GetCharacter() uint32

func (*GetPlayerAdminJailRequest) ProtoMessage

func (*GetPlayerAdminJailRequest) ProtoMessage()

func (*GetPlayerAdminJailRequest) ProtoReflect added in v0.8.4

func (*GetPlayerAdminJailRequest) Reset

func (x *GetPlayerAdminJailRequest) Reset()

func (*GetPlayerAdminJailRequest) String

func (x *GetPlayerAdminJailRequest) String() string

func (*GetPlayerAdminJailRequest) Validate

func (m *GetPlayerAdminJailRequest) Validate() error

Validate checks the field values on GetPlayerAdminJailRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetPlayerAdminJailRequestValidationError

type GetPlayerAdminJailRequestValidationError struct {
	// contains filtered or unexported fields
}

GetPlayerAdminJailRequestValidationError is the validation error returned by GetPlayerAdminJailRequest.Validate if the designated constraints aren't met.

func (GetPlayerAdminJailRequestValidationError) Cause

Cause function returns cause value.

func (GetPlayerAdminJailRequestValidationError) Error

Error satisfies the builtin error interface

func (GetPlayerAdminJailRequestValidationError) ErrorName

ErrorName returns error name.

func (GetPlayerAdminJailRequestValidationError) Field

Field function returns field value.

func (GetPlayerAdminJailRequestValidationError) Key

Key function returns key value.

func (GetPlayerAdminJailRequestValidationError) Reason

Reason function returns reason value.

type GetPlayerAdminJailResponse

type GetPlayerAdminJailResponse struct {

	// Time of admin jail in seconds.
	JailTime uint32 `protobuf:"varint,1,opt,name=jail_time,json=jailTime,proto3" json:"jail_time,omitempty"`
	// Admin jail reason.
	Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// An admin that put a player in the admin jail.
	Admin uint32 `protobuf:"varint,3,opt,name=admin,proto3" json:"admin,omitempty"`
	// Date when the player was thrown into admin jail in Unix time.
	Date int64 `protobuf:"varint,4,opt,name=date,proto3" json:"date,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `GetPlayerAdminJail`.

func (*GetPlayerAdminJailResponse) Descriptor deprecated

func (*GetPlayerAdminJailResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPlayerAdminJailResponse.ProtoReflect.Descriptor instead.

func (*GetPlayerAdminJailResponse) GetAdmin

func (x *GetPlayerAdminJailResponse) GetAdmin() uint32

func (*GetPlayerAdminJailResponse) GetDate

func (x *GetPlayerAdminJailResponse) GetDate() int64

func (*GetPlayerAdminJailResponse) GetJailTime

func (x *GetPlayerAdminJailResponse) GetJailTime() uint32

func (*GetPlayerAdminJailResponse) GetReason

func (x *GetPlayerAdminJailResponse) GetReason() string

func (*GetPlayerAdminJailResponse) ProtoMessage

func (*GetPlayerAdminJailResponse) ProtoMessage()

func (*GetPlayerAdminJailResponse) ProtoReflect added in v0.8.4

func (*GetPlayerAdminJailResponse) Reset

func (x *GetPlayerAdminJailResponse) Reset()

func (*GetPlayerAdminJailResponse) String

func (x *GetPlayerAdminJailResponse) String() string

func (*GetPlayerAdminJailResponse) Validate

func (m *GetPlayerAdminJailResponse) Validate() error

Validate checks the field values on GetPlayerAdminJailResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetPlayerAdminJailResponseValidationError

type GetPlayerAdminJailResponseValidationError struct {
	// contains filtered or unexported fields
}

GetPlayerAdminJailResponseValidationError is the validation error returned by GetPlayerAdminJailResponse.Validate if the designated constraints aren't met.

func (GetPlayerAdminJailResponseValidationError) Cause

Cause function returns cause value.

func (GetPlayerAdminJailResponseValidationError) Error

Error satisfies the builtin error interface

func (GetPlayerAdminJailResponseValidationError) ErrorName

ErrorName returns error name.

func (GetPlayerAdminJailResponseValidationError) Field

Field function returns field value.

func (GetPlayerAdminJailResponseValidationError) Key

Key function returns key value.

func (GetPlayerAdminJailResponseValidationError) Reason

Reason function returns reason value.

type GetPlayerBansRequest

type GetPlayerBansRequest struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	Ip     string `protobuf:"bytes,2,opt,name=ip,proto3" json:"ip,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `GetPlayerBans`.

func (*GetPlayerBansRequest) Descriptor deprecated

func (*GetPlayerBansRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPlayerBansRequest.ProtoReflect.Descriptor instead.

func (*GetPlayerBansRequest) GetIp

func (x *GetPlayerBansRequest) GetIp() string

func (*GetPlayerBansRequest) GetPlayer

func (x *GetPlayerBansRequest) GetPlayer() uint32

func (*GetPlayerBansRequest) ProtoMessage

func (*GetPlayerBansRequest) ProtoMessage()

func (*GetPlayerBansRequest) ProtoReflect added in v0.8.4

func (x *GetPlayerBansRequest) ProtoReflect() protoreflect.Message

func (*GetPlayerBansRequest) Reset

func (x *GetPlayerBansRequest) Reset()

func (*GetPlayerBansRequest) String

func (x *GetPlayerBansRequest) String() string

func (*GetPlayerBansRequest) Validate

func (m *GetPlayerBansRequest) Validate() error

Validate checks the field values on GetPlayerBansRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetPlayerBansRequestValidationError

type GetPlayerBansRequestValidationError struct {
	// contains filtered or unexported fields
}

GetPlayerBansRequestValidationError is the validation error returned by GetPlayerBansRequest.Validate if the designated constraints aren't met.

func (GetPlayerBansRequestValidationError) Cause

Cause function returns cause value.

func (GetPlayerBansRequestValidationError) Error

Error satisfies the builtin error interface

func (GetPlayerBansRequestValidationError) ErrorName

ErrorName returns error name.

func (GetPlayerBansRequestValidationError) Field

Field function returns field value.

func (GetPlayerBansRequestValidationError) Key

Key function returns key value.

func (GetPlayerBansRequestValidationError) Reason

Reason function returns reason value.

type GetPlayerBansResponse

type GetPlayerBansResponse struct {
	Bans []*BanMessage `protobuf:"bytes,1,rep,name=bans,proto3" json:"bans,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `GetPlayerBans`.

func (*GetPlayerBansResponse) Descriptor deprecated

func (*GetPlayerBansResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPlayerBansResponse.ProtoReflect.Descriptor instead.

func (*GetPlayerBansResponse) GetBans

func (x *GetPlayerBansResponse) GetBans() []*BanMessage

func (*GetPlayerBansResponse) ProtoMessage

func (*GetPlayerBansResponse) ProtoMessage()

func (*GetPlayerBansResponse) ProtoReflect added in v0.8.4

func (x *GetPlayerBansResponse) ProtoReflect() protoreflect.Message

func (*GetPlayerBansResponse) Reset

func (x *GetPlayerBansResponse) Reset()

func (*GetPlayerBansResponse) String

func (x *GetPlayerBansResponse) String() string

func (*GetPlayerBansResponse) Validate

func (m *GetPlayerBansResponse) Validate() error

Validate checks the field values on GetPlayerBansResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetPlayerBansResponseValidationError

type GetPlayerBansResponseValidationError struct {
	// contains filtered or unexported fields
}

GetPlayerBansResponseValidationError is the validation error returned by GetPlayerBansResponse.Validate if the designated constraints aren't met.

func (GetPlayerBansResponseValidationError) Cause

Cause function returns cause value.

func (GetPlayerBansResponseValidationError) Error

Error satisfies the builtin error interface

func (GetPlayerBansResponseValidationError) ErrorName

ErrorName returns error name.

func (GetPlayerBansResponseValidationError) Field

Field function returns field value.

func (GetPlayerBansResponseValidationError) Key

Key function returns key value.

func (GetPlayerBansResponseValidationError) Reason

Reason function returns reason value.

type GetPlayerWarnsRequest

type GetPlayerWarnsRequest struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `GetPlayerWarns`.

func (*GetPlayerWarnsRequest) Descriptor deprecated

func (*GetPlayerWarnsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPlayerWarnsRequest.ProtoReflect.Descriptor instead.

func (*GetPlayerWarnsRequest) GetPlayer

func (x *GetPlayerWarnsRequest) GetPlayer() uint32

func (*GetPlayerWarnsRequest) ProtoMessage

func (*GetPlayerWarnsRequest) ProtoMessage()

func (*GetPlayerWarnsRequest) ProtoReflect added in v0.8.4

func (x *GetPlayerWarnsRequest) ProtoReflect() protoreflect.Message

func (*GetPlayerWarnsRequest) Reset

func (x *GetPlayerWarnsRequest) Reset()

func (*GetPlayerWarnsRequest) String

func (x *GetPlayerWarnsRequest) String() string

func (*GetPlayerWarnsRequest) Validate

func (m *GetPlayerWarnsRequest) Validate() error

Validate checks the field values on GetPlayerWarnsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetPlayerWarnsRequestValidationError

type GetPlayerWarnsRequestValidationError struct {
	// contains filtered or unexported fields
}

GetPlayerWarnsRequestValidationError is the validation error returned by GetPlayerWarnsRequest.Validate if the designated constraints aren't met.

func (GetPlayerWarnsRequestValidationError) Cause

Cause function returns cause value.

func (GetPlayerWarnsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetPlayerWarnsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetPlayerWarnsRequestValidationError) Field

Field function returns field value.

func (GetPlayerWarnsRequestValidationError) Key

Key function returns key value.

func (GetPlayerWarnsRequestValidationError) Reason

Reason function returns reason value.

type GetPlayerWarnsResponse

type GetPlayerWarnsResponse struct {
	Warns []*WarnMessage `protobuf:"bytes,1,rep,name=warns,proto3" json:"warns,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `GetPlayerWarns`.

func (*GetPlayerWarnsResponse) Descriptor deprecated

func (*GetPlayerWarnsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPlayerWarnsResponse.ProtoReflect.Descriptor instead.

func (*GetPlayerWarnsResponse) GetWarns

func (x *GetPlayerWarnsResponse) GetWarns() []*WarnMessage

func (*GetPlayerWarnsResponse) ProtoMessage

func (*GetPlayerWarnsResponse) ProtoMessage()

func (*GetPlayerWarnsResponse) ProtoReflect added in v0.8.4

func (x *GetPlayerWarnsResponse) ProtoReflect() protoreflect.Message

func (*GetPlayerWarnsResponse) Reset

func (x *GetPlayerWarnsResponse) Reset()

func (*GetPlayerWarnsResponse) String

func (x *GetPlayerWarnsResponse) String() string

func (*GetPlayerWarnsResponse) Validate

func (m *GetPlayerWarnsResponse) Validate() error

Validate checks the field values on GetPlayerWarnsResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetPlayerWarnsResponseValidationError

type GetPlayerWarnsResponseValidationError struct {
	// contains filtered or unexported fields
}

GetPlayerWarnsResponseValidationError is the validation error returned by GetPlayerWarnsResponse.Validate if the designated constraints aren't met.

func (GetPlayerWarnsResponseValidationError) Cause

Cause function returns cause value.

func (GetPlayerWarnsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetPlayerWarnsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetPlayerWarnsResponseValidationError) Field

Field function returns field value.

func (GetPlayerWarnsResponseValidationError) Key

Key function returns key value.

func (GetPlayerWarnsResponseValidationError) Reason

Reason function returns reason value.

type GetWarnRequest

type GetWarnRequest struct {
	Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `GetWarn`.

func (*GetWarnRequest) Descriptor deprecated

func (*GetWarnRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetWarnRequest.ProtoReflect.Descriptor instead.

func (*GetWarnRequest) GetId

func (x *GetWarnRequest) GetId() uint32

func (*GetWarnRequest) ProtoMessage

func (*GetWarnRequest) ProtoMessage()

func (*GetWarnRequest) ProtoReflect added in v0.8.4

func (x *GetWarnRequest) ProtoReflect() protoreflect.Message

func (*GetWarnRequest) Reset

func (x *GetWarnRequest) Reset()

func (*GetWarnRequest) String

func (x *GetWarnRequest) String() string

func (*GetWarnRequest) Validate

func (m *GetWarnRequest) Validate() error

Validate checks the field values on GetWarnRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GetWarnRequestValidationError

type GetWarnRequestValidationError struct {
	// contains filtered or unexported fields
}

GetWarnRequestValidationError is the validation error returned by GetWarnRequest.Validate if the designated constraints aren't met.

func (GetWarnRequestValidationError) Cause

Cause function returns cause value.

func (GetWarnRequestValidationError) Error

Error satisfies the builtin error interface

func (GetWarnRequestValidationError) ErrorName

func (e GetWarnRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetWarnRequestValidationError) Field

Field function returns field value.

func (GetWarnRequestValidationError) Key

Key function returns key value.

func (GetWarnRequestValidationError) Reason

Reason function returns reason value.

type IsCharacterBlockedRequest

type IsCharacterBlockedRequest struct {
	Character uint32 `protobuf:"varint,1,opt,name=character,proto3" json:"character,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `IsCharacterBlocked`.

func (*IsCharacterBlockedRequest) Descriptor deprecated

func (*IsCharacterBlockedRequest) Descriptor() ([]byte, []int)

Deprecated: Use IsCharacterBlockedRequest.ProtoReflect.Descriptor instead.

func (*IsCharacterBlockedRequest) GetCharacter

func (x *IsCharacterBlockedRequest) GetCharacter() uint32

func (*IsCharacterBlockedRequest) ProtoMessage

func (*IsCharacterBlockedRequest) ProtoMessage()

func (*IsCharacterBlockedRequest) ProtoReflect added in v0.8.4

func (*IsCharacterBlockedRequest) Reset

func (x *IsCharacterBlockedRequest) Reset()

func (*IsCharacterBlockedRequest) String

func (x *IsCharacterBlockedRequest) String() string

func (*IsCharacterBlockedRequest) Validate

func (m *IsCharacterBlockedRequest) Validate() error

Validate checks the field values on IsCharacterBlockedRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IsCharacterBlockedRequestValidationError

type IsCharacterBlockedRequestValidationError struct {
	// contains filtered or unexported fields
}

IsCharacterBlockedRequestValidationError is the validation error returned by IsCharacterBlockedRequest.Validate if the designated constraints aren't met.

func (IsCharacterBlockedRequestValidationError) Cause

Cause function returns cause value.

func (IsCharacterBlockedRequestValidationError) Error

Error satisfies the builtin error interface

func (IsCharacterBlockedRequestValidationError) ErrorName

ErrorName returns error name.

func (IsCharacterBlockedRequestValidationError) Field

Field function returns field value.

func (IsCharacterBlockedRequestValidationError) Key

Key function returns key value.

func (IsCharacterBlockedRequestValidationError) Reason

Reason function returns reason value.

type IsCharacterBlockedResponse

type IsCharacterBlockedResponse struct {
	Blocked bool   `protobuf:"varint,1,opt,name=blocked,proto3" json:"blocked,omitempty"`
	BlockId uint32 `protobuf:"varint,2,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `IsCharacterBlocked`.

func (*IsCharacterBlockedResponse) Descriptor deprecated

func (*IsCharacterBlockedResponse) Descriptor() ([]byte, []int)

Deprecated: Use IsCharacterBlockedResponse.ProtoReflect.Descriptor instead.

func (*IsCharacterBlockedResponse) GetBlockId

func (x *IsCharacterBlockedResponse) GetBlockId() uint32

func (*IsCharacterBlockedResponse) GetBlocked

func (x *IsCharacterBlockedResponse) GetBlocked() bool

func (*IsCharacterBlockedResponse) ProtoMessage

func (*IsCharacterBlockedResponse) ProtoMessage()

func (*IsCharacterBlockedResponse) ProtoReflect added in v0.8.4

func (*IsCharacterBlockedResponse) Reset

func (x *IsCharacterBlockedResponse) Reset()

func (*IsCharacterBlockedResponse) String

func (x *IsCharacterBlockedResponse) String() string

func (*IsCharacterBlockedResponse) Validate

func (m *IsCharacterBlockedResponse) Validate() error

Validate checks the field values on IsCharacterBlockedResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IsCharacterBlockedResponseValidationError

type IsCharacterBlockedResponseValidationError struct {
	// contains filtered or unexported fields
}

IsCharacterBlockedResponseValidationError is the validation error returned by IsCharacterBlockedResponse.Validate if the designated constraints aren't met.

func (IsCharacterBlockedResponseValidationError) Cause

Cause function returns cause value.

func (IsCharacterBlockedResponseValidationError) Error

Error satisfies the builtin error interface

func (IsCharacterBlockedResponseValidationError) ErrorName

ErrorName returns error name.

func (IsCharacterBlockedResponseValidationError) Field

Field function returns field value.

func (IsCharacterBlockedResponseValidationError) Key

Key function returns key value.

func (IsCharacterBlockedResponseValidationError) Reason

Reason function returns reason value.

type IsCharacterJailedRequest

type IsCharacterJailedRequest struct {
	Character uint32 `protobuf:"varint,1,opt,name=character,proto3" json:"character,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `IsCharacterJailed`.

func (*IsCharacterJailedRequest) Descriptor deprecated

func (*IsCharacterJailedRequest) Descriptor() ([]byte, []int)

Deprecated: Use IsCharacterJailedRequest.ProtoReflect.Descriptor instead.

func (*IsCharacterJailedRequest) GetCharacter

func (x *IsCharacterJailedRequest) GetCharacter() uint32

func (*IsCharacterJailedRequest) ProtoMessage

func (*IsCharacterJailedRequest) ProtoMessage()

func (*IsCharacterJailedRequest) ProtoReflect added in v0.8.4

func (x *IsCharacterJailedRequest) ProtoReflect() protoreflect.Message

func (*IsCharacterJailedRequest) Reset

func (x *IsCharacterJailedRequest) Reset()

func (*IsCharacterJailedRequest) String

func (x *IsCharacterJailedRequest) String() string

func (*IsCharacterJailedRequest) Validate

func (m *IsCharacterJailedRequest) Validate() error

Validate checks the field values on IsCharacterJailedRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IsCharacterJailedRequestValidationError

type IsCharacterJailedRequestValidationError struct {
	// contains filtered or unexported fields
}

IsCharacterJailedRequestValidationError is the validation error returned by IsCharacterJailedRequest.Validate if the designated constraints aren't met.

func (IsCharacterJailedRequestValidationError) Cause

Cause function returns cause value.

func (IsCharacterJailedRequestValidationError) Error

Error satisfies the builtin error interface

func (IsCharacterJailedRequestValidationError) ErrorName

ErrorName returns error name.

func (IsCharacterJailedRequestValidationError) Field

Field function returns field value.

func (IsCharacterJailedRequestValidationError) Key

Key function returns key value.

func (IsCharacterJailedRequestValidationError) Reason

Reason function returns reason value.

type IsCharacterJailedResponse

type IsCharacterJailedResponse struct {
	Jailed   bool   `protobuf:"varint,1,opt,name=jailed,proto3" json:"jailed,omitempty"`
	JailTime uint32 `protobuf:"varint,2,opt,name=jail_time,json=jailTime,proto3" json:"jail_time,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `IsCharacterJailed`.

func (*IsCharacterJailedResponse) Descriptor deprecated

func (*IsCharacterJailedResponse) Descriptor() ([]byte, []int)

Deprecated: Use IsCharacterJailedResponse.ProtoReflect.Descriptor instead.

func (*IsCharacterJailedResponse) GetJailTime

func (x *IsCharacterJailedResponse) GetJailTime() uint32

func (*IsCharacterJailedResponse) GetJailed

func (x *IsCharacterJailedResponse) GetJailed() bool

func (*IsCharacterJailedResponse) ProtoMessage

func (*IsCharacterJailedResponse) ProtoMessage()

func (*IsCharacterJailedResponse) ProtoReflect added in v0.8.4

func (*IsCharacterJailedResponse) Reset

func (x *IsCharacterJailedResponse) Reset()

func (*IsCharacterJailedResponse) String

func (x *IsCharacterJailedResponse) String() string

func (*IsCharacterJailedResponse) Validate

func (m *IsCharacterJailedResponse) Validate() error

Validate checks the field values on IsCharacterJailedResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IsCharacterJailedResponseValidationError

type IsCharacterJailedResponseValidationError struct {
	// contains filtered or unexported fields
}

IsCharacterJailedResponseValidationError is the validation error returned by IsCharacterJailedResponse.Validate if the designated constraints aren't met.

func (IsCharacterJailedResponseValidationError) Cause

Cause function returns cause value.

func (IsCharacterJailedResponseValidationError) Error

Error satisfies the builtin error interface

func (IsCharacterJailedResponseValidationError) ErrorName

ErrorName returns error name.

func (IsCharacterJailedResponseValidationError) Field

Field function returns field value.

func (IsCharacterJailedResponseValidationError) Key

Key function returns key value.

func (IsCharacterJailedResponseValidationError) Reason

Reason function returns reason value.

type IsPlayerBannedRequest

type IsPlayerBannedRequest struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	Ip     string `protobuf:"bytes,2,opt,name=ip,proto3" json:"ip,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `IsPlayerBanned`.

func (*IsPlayerBannedRequest) Descriptor deprecated

func (*IsPlayerBannedRequest) Descriptor() ([]byte, []int)

Deprecated: Use IsPlayerBannedRequest.ProtoReflect.Descriptor instead.

func (*IsPlayerBannedRequest) GetIp

func (x *IsPlayerBannedRequest) GetIp() string

func (*IsPlayerBannedRequest) GetPlayer

func (x *IsPlayerBannedRequest) GetPlayer() uint32

func (*IsPlayerBannedRequest) ProtoMessage

func (*IsPlayerBannedRequest) ProtoMessage()

func (*IsPlayerBannedRequest) ProtoReflect added in v0.8.4

func (x *IsPlayerBannedRequest) ProtoReflect() protoreflect.Message

func (*IsPlayerBannedRequest) Reset

func (x *IsPlayerBannedRequest) Reset()

func (*IsPlayerBannedRequest) String

func (x *IsPlayerBannedRequest) String() string

func (*IsPlayerBannedRequest) Validate

func (m *IsPlayerBannedRequest) Validate() error

Validate checks the field values on IsPlayerBannedRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IsPlayerBannedRequestValidationError

type IsPlayerBannedRequestValidationError struct {
	// contains filtered or unexported fields
}

IsPlayerBannedRequestValidationError is the validation error returned by IsPlayerBannedRequest.Validate if the designated constraints aren't met.

func (IsPlayerBannedRequestValidationError) Cause

Cause function returns cause value.

func (IsPlayerBannedRequestValidationError) Error

Error satisfies the builtin error interface

func (IsPlayerBannedRequestValidationError) ErrorName

ErrorName returns error name.

func (IsPlayerBannedRequestValidationError) Field

Field function returns field value.

func (IsPlayerBannedRequestValidationError) Key

Key function returns key value.

func (IsPlayerBannedRequestValidationError) Reason

Reason function returns reason value.

type IsPlayerBannedResponse

type IsPlayerBannedResponse struct {
	Banned bool   `protobuf:"varint,1,opt,name=banned,proto3" json:"banned,omitempty"`
	BanId  uint32 `protobuf:"varint,2,opt,name=ban_id,json=banId,proto3" json:"ban_id,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `IsPlayerBanned`.

func (*IsPlayerBannedResponse) Descriptor deprecated

func (*IsPlayerBannedResponse) Descriptor() ([]byte, []int)

Deprecated: Use IsPlayerBannedResponse.ProtoReflect.Descriptor instead.

func (*IsPlayerBannedResponse) GetBanId

func (x *IsPlayerBannedResponse) GetBanId() uint32

func (*IsPlayerBannedResponse) GetBanned

func (x *IsPlayerBannedResponse) GetBanned() bool

func (*IsPlayerBannedResponse) ProtoMessage

func (*IsPlayerBannedResponse) ProtoMessage()

func (*IsPlayerBannedResponse) ProtoReflect added in v0.8.4

func (x *IsPlayerBannedResponse) ProtoReflect() protoreflect.Message

func (*IsPlayerBannedResponse) Reset

func (x *IsPlayerBannedResponse) Reset()

func (*IsPlayerBannedResponse) String

func (x *IsPlayerBannedResponse) String() string

func (*IsPlayerBannedResponse) Validate

func (m *IsPlayerBannedResponse) Validate() error

Validate checks the field values on IsPlayerBannedResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IsPlayerBannedResponseValidationError

type IsPlayerBannedResponseValidationError struct {
	// contains filtered or unexported fields
}

IsPlayerBannedResponseValidationError is the validation error returned by IsPlayerBannedResponse.Validate if the designated constraints aren't met.

func (IsPlayerBannedResponseValidationError) Cause

Cause function returns cause value.

func (IsPlayerBannedResponseValidationError) Error

Error satisfies the builtin error interface

func (IsPlayerBannedResponseValidationError) ErrorName

ErrorName returns error name.

func (IsPlayerBannedResponseValidationError) Field

Field function returns field value.

func (IsPlayerBannedResponseValidationError) Key

Key function returns key value.

func (IsPlayerBannedResponseValidationError) Reason

Reason function returns reason value.

type MruVPunishmentsServiceClient

type MruVPunishmentsServiceClient interface {
	// Ban player on account and/or ip.
	// If ban_time is 0, ban will never expire.
	Ban(ctx context.Context, in *BanRequest, opts ...grpc.CallOption) (*BanResponse, error)
	// Block player character.
	Block(ctx context.Context, in *BlockRequest, opts ...grpc.CallOption) (*BlockResponse, error)
	// Warn player.
	// If warn_time is 0, warn will never expire.
	Warn(ctx context.Context, in *WarnRequest, opts ...grpc.CallOption) (*WarnResponse, error)
	// Put player in an admin jail.
	AdminJail(ctx context.Context, in *AdminJailRequest, opts ...grpc.CallOption) (*AdminJailResponse, error)
	// Mute player global chats.
	MuteGlobalChats(ctx context.Context, in *MuteGlobalChatsRequest, opts ...grpc.CallOption) (*MuteGlobalChatsResponse, error)
	// Deactivate a specific player ban.
	UnBan(ctx context.Context, in *UnBanRequest, opts ...grpc.CallOption) (*UnBanResponse, error)
	// Deactivate a character block.
	UnBlock(ctx context.Context, in *UnBlockRequest, opts ...grpc.CallOption) (*UnBlockResponse, error)
	// Deactivate a specific player warning. If a player was banned by reaching the warning limit, a player will be unbanned.
	UnWarn(ctx context.Context, in *UnWarnRequest, opts ...grpc.CallOption) (*UnWarnResponse, error)
	// Remove player from admin jail.
	UnAdminJail(ctx context.Context, in *UnAdminJailRequest, opts ...grpc.CallOption) (*UnAdminJailResponse, error)
	//
	UnMuteGlobalChats(ctx context.Context, in *UnMuteGlobalChatsRequest, opts ...grpc.CallOption) (*UnMuteGlobalChatsResponse, error)
	// Get all player bans.
	GetPlayerBans(ctx context.Context, in *GetPlayerBansRequest, opts ...grpc.CallOption) (*GetPlayerBansResponse, error)
	// Get all player warns.
	GetPlayerWarns(ctx context.Context, in *GetPlayerWarnsRequest, opts ...grpc.CallOption) (*GetPlayerWarnsResponse, error)
	// Get player admin jail time.
	GetPlayerAdminJail(ctx context.Context, in *GetPlayerAdminJailRequest, opts ...grpc.CallOption) (*GetPlayerAdminJailResponse, error)
	// Get ban info.
	GetBan(ctx context.Context, in *GetBanRequest, opts ...grpc.CallOption) (*BanMessage, error)
	// Get warn info.
	GetWarn(ctx context.Context, in *GetWarnRequest, opts ...grpc.CallOption) (*WarnMessage, error)
	// Get block info.
	GetBlock(ctx context.Context, in *GetBlockRequest, opts ...grpc.CallOption) (*BlockMessage, error)
	// Check is player or ip banned.
	IsPlayerBanned(ctx context.Context, in *IsPlayerBannedRequest, opts ...grpc.CallOption) (*IsPlayerBannedResponse, error)
	// Check is character is blocked.
	IsCharacterBlocked(ctx context.Context, in *IsCharacterBlockedRequest, opts ...grpc.CallOption) (*IsCharacterBlockedResponse, error)
	//
	IsCharacterJailed(ctx context.Context, in *IsCharacterJailedRequest, opts ...grpc.CallOption) (*IsCharacterJailedResponse, error)
	// Subscribe to ban events.
	WatchBans(ctx context.Context, in *WatchBansRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchBansClient, error)
	// Subscribe to block events.
	WatchBlocks(ctx context.Context, in *WatchBlocksRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchBlocksClient, error)
	// Subscribe to warn events.
	WatchWarns(ctx context.Context, in *WatchWarnsRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchWarnsClient, error)
	// Subscribe to admin jail events.
	WatchAdminJails(ctx context.Context, in *WatchAdminJailsRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchAdminJailsClient, error)
	// Subscribe to unban events.
	WatchUnBans(ctx context.Context, in *WatchUnBansRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchUnBansClient, error)
	// Subscribe to unblock events.
	WatchUnBlocks(ctx context.Context, in *WatchUnBlocksRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchUnBlocksClient, error)
	// Subscribe to unwarn events.
	WatchUnWarns(ctx context.Context, in *WatchUnWarnsRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchUnWarnsClient, error)
	// Subscribe to admin jail release events.
	WatchUnAdminJails(ctx context.Context, in *WatchUnAdminJailsRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchUnAdminJailsClient, error)
	// Subscribe to player punishments.
	WatchPlayerPunishments(ctx context.Context, in *WatchPlayerPunishmentsRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchPlayerPunishmentsClient, error)
	// Subscribe to player acquittals.
	WatchPlayerAcquittals(ctx context.Context, in *WatchPlayerAcquittalsRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchPlayerAcquittalsClient, error)
	// Subscribe to all punishments and acquittals events.
	WatchPunishments(ctx context.Context, in *WatchPunishmentsRequest, opts ...grpc.CallOption) (MruVPunishmentsService_WatchPunishmentsClient, error)
}

MruVPunishmentsServiceClient is the client API for MruVPunishmentsService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type MruVPunishmentsServiceServer

type MruVPunishmentsServiceServer interface {
	// Ban player on account and/or ip.
	// If ban_time is 0, ban will never expire.
	Ban(context.Context, *BanRequest) (*BanResponse, error)
	// Block player character.
	Block(context.Context, *BlockRequest) (*BlockResponse, error)
	// Warn player.
	// If warn_time is 0, warn will never expire.
	Warn(context.Context, *WarnRequest) (*WarnResponse, error)
	// Put player in an admin jail.
	AdminJail(context.Context, *AdminJailRequest) (*AdminJailResponse, error)
	// Mute player global chats.
	MuteGlobalChats(context.Context, *MuteGlobalChatsRequest) (*MuteGlobalChatsResponse, error)
	// Deactivate a specific player ban.
	UnBan(context.Context, *UnBanRequest) (*UnBanResponse, error)
	// Deactivate a character block.
	UnBlock(context.Context, *UnBlockRequest) (*UnBlockResponse, error)
	// Deactivate a specific player warning. If a player was banned by reaching the warning limit, a player will be unbanned.
	UnWarn(context.Context, *UnWarnRequest) (*UnWarnResponse, error)
	// Remove player from admin jail.
	UnAdminJail(context.Context, *UnAdminJailRequest) (*UnAdminJailResponse, error)
	//
	UnMuteGlobalChats(context.Context, *UnMuteGlobalChatsRequest) (*UnMuteGlobalChatsResponse, error)
	// Get all player bans.
	GetPlayerBans(context.Context, *GetPlayerBansRequest) (*GetPlayerBansResponse, error)
	// Get all player warns.
	GetPlayerWarns(context.Context, *GetPlayerWarnsRequest) (*GetPlayerWarnsResponse, error)
	// Get player admin jail time.
	GetPlayerAdminJail(context.Context, *GetPlayerAdminJailRequest) (*GetPlayerAdminJailResponse, error)
	// Get ban info.
	GetBan(context.Context, *GetBanRequest) (*BanMessage, error)
	// Get warn info.
	GetWarn(context.Context, *GetWarnRequest) (*WarnMessage, error)
	// Get block info.
	GetBlock(context.Context, *GetBlockRequest) (*BlockMessage, error)
	// Check is player or ip banned.
	IsPlayerBanned(context.Context, *IsPlayerBannedRequest) (*IsPlayerBannedResponse, error)
	// Check is character is blocked.
	IsCharacterBlocked(context.Context, *IsCharacterBlockedRequest) (*IsCharacterBlockedResponse, error)
	//
	IsCharacterJailed(context.Context, *IsCharacterJailedRequest) (*IsCharacterJailedResponse, error)
	// Subscribe to ban events.
	WatchBans(*WatchBansRequest, MruVPunishmentsService_WatchBansServer) error
	// Subscribe to block events.
	WatchBlocks(*WatchBlocksRequest, MruVPunishmentsService_WatchBlocksServer) error
	// Subscribe to warn events.
	WatchWarns(*WatchWarnsRequest, MruVPunishmentsService_WatchWarnsServer) error
	// Subscribe to admin jail events.
	WatchAdminJails(*WatchAdminJailsRequest, MruVPunishmentsService_WatchAdminJailsServer) error
	// Subscribe to unban events.
	WatchUnBans(*WatchUnBansRequest, MruVPunishmentsService_WatchUnBansServer) error
	// Subscribe to unblock events.
	WatchUnBlocks(*WatchUnBlocksRequest, MruVPunishmentsService_WatchUnBlocksServer) error
	// Subscribe to unwarn events.
	WatchUnWarns(*WatchUnWarnsRequest, MruVPunishmentsService_WatchUnWarnsServer) error
	// Subscribe to admin jail release events.
	WatchUnAdminJails(*WatchUnAdminJailsRequest, MruVPunishmentsService_WatchUnAdminJailsServer) error
	// Subscribe to player punishments.
	WatchPlayerPunishments(*WatchPlayerPunishmentsRequest, MruVPunishmentsService_WatchPlayerPunishmentsServer) error
	// Subscribe to player acquittals.
	WatchPlayerAcquittals(*WatchPlayerAcquittalsRequest, MruVPunishmentsService_WatchPlayerAcquittalsServer) error
	// Subscribe to all punishments and acquittals events.
	WatchPunishments(*WatchPunishmentsRequest, MruVPunishmentsService_WatchPunishmentsServer) error
}

MruVPunishmentsServiceServer is the server API for MruVPunishmentsService service.

type MruVPunishmentsService_WatchAdminJailsClient

type MruVPunishmentsService_WatchAdminJailsClient interface {
	Recv() (*AdminJailMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchAdminJailsServer

type MruVPunishmentsService_WatchAdminJailsServer interface {
	Send(*AdminJailMessage) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchBansClient

type MruVPunishmentsService_WatchBansClient interface {
	Recv() (*BanMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchBansServer

type MruVPunishmentsService_WatchBansServer interface {
	Send(*BanMessage) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchBlocksClient

type MruVPunishmentsService_WatchBlocksClient interface {
	Recv() (*BlockMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchBlocksServer

type MruVPunishmentsService_WatchBlocksServer interface {
	Send(*BlockMessage) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchPlayerAcquittalsClient

type MruVPunishmentsService_WatchPlayerAcquittalsClient interface {
	Recv() (*WatchPlayerAcquittalsResponse, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchPlayerAcquittalsServer

type MruVPunishmentsService_WatchPlayerAcquittalsServer interface {
	Send(*WatchPlayerAcquittalsResponse) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchPlayerPunishmentsClient

type MruVPunishmentsService_WatchPlayerPunishmentsClient interface {
	Recv() (*WatchPlayerPunishmentsResponse, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchPlayerPunishmentsServer

type MruVPunishmentsService_WatchPlayerPunishmentsServer interface {
	Send(*WatchPlayerPunishmentsResponse) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchPunishmentsClient

type MruVPunishmentsService_WatchPunishmentsClient interface {
	Recv() (*WatchPunishmentsResponse, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchPunishmentsServer

type MruVPunishmentsService_WatchPunishmentsServer interface {
	Send(*WatchPunishmentsResponse) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchUnAdminJailsClient

type MruVPunishmentsService_WatchUnAdminJailsClient interface {
	Recv() (*UnAdminJailMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchUnAdminJailsServer

type MruVPunishmentsService_WatchUnAdminJailsServer interface {
	Send(*UnAdminJailMessage) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchUnBansClient

type MruVPunishmentsService_WatchUnBansClient interface {
	Recv() (*UnBanMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchUnBansServer

type MruVPunishmentsService_WatchUnBansServer interface {
	Send(*UnBanMessage) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchUnBlocksClient

type MruVPunishmentsService_WatchUnBlocksClient interface {
	Recv() (*UnBlockMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchUnBlocksServer

type MruVPunishmentsService_WatchUnBlocksServer interface {
	Send(*UnBlockMessage) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchUnWarnsClient

type MruVPunishmentsService_WatchUnWarnsClient interface {
	Recv() (*UnWarnMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchUnWarnsServer

type MruVPunishmentsService_WatchUnWarnsServer interface {
	Send(*UnWarnMessage) error
	grpc.ServerStream
}

type MruVPunishmentsService_WatchWarnsClient

type MruVPunishmentsService_WatchWarnsClient interface {
	Recv() (*WarnMessage, error)
	grpc.ClientStream
}

type MruVPunishmentsService_WatchWarnsServer

type MruVPunishmentsService_WatchWarnsServer interface {
	Send(*WarnMessage) error
	grpc.ServerStream
}

type MuteGlobalChatsRequest

type MuteGlobalChatsRequest struct {
	Account uint32 `protobuf:"varint,1,opt,name=account,proto3" json:"account,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `MuteGlobalChats`.

func (*MuteGlobalChatsRequest) Descriptor deprecated

func (*MuteGlobalChatsRequest) Descriptor() ([]byte, []int)

Deprecated: Use MuteGlobalChatsRequest.ProtoReflect.Descriptor instead.

func (*MuteGlobalChatsRequest) GetAccount

func (x *MuteGlobalChatsRequest) GetAccount() uint32

func (*MuteGlobalChatsRequest) ProtoMessage

func (*MuteGlobalChatsRequest) ProtoMessage()

func (*MuteGlobalChatsRequest) ProtoReflect added in v0.8.4

func (x *MuteGlobalChatsRequest) ProtoReflect() protoreflect.Message

func (*MuteGlobalChatsRequest) Reset

func (x *MuteGlobalChatsRequest) Reset()

func (*MuteGlobalChatsRequest) String

func (x *MuteGlobalChatsRequest) String() string

func (*MuteGlobalChatsRequest) Validate

func (m *MuteGlobalChatsRequest) Validate() error

Validate checks the field values on MuteGlobalChatsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type MuteGlobalChatsRequestValidationError

type MuteGlobalChatsRequestValidationError struct {
	// contains filtered or unexported fields
}

MuteGlobalChatsRequestValidationError is the validation error returned by MuteGlobalChatsRequest.Validate if the designated constraints aren't met.

func (MuteGlobalChatsRequestValidationError) Cause

Cause function returns cause value.

func (MuteGlobalChatsRequestValidationError) Error

Error satisfies the builtin error interface

func (MuteGlobalChatsRequestValidationError) ErrorName

ErrorName returns error name.

func (MuteGlobalChatsRequestValidationError) Field

Field function returns field value.

func (MuteGlobalChatsRequestValidationError) Key

Key function returns key value.

func (MuteGlobalChatsRequestValidationError) Reason

Reason function returns reason value.

type MuteGlobalChatsResponse

type MuteGlobalChatsResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `MuteGlobalChats`.

func (*MuteGlobalChatsResponse) Descriptor deprecated

func (*MuteGlobalChatsResponse) Descriptor() ([]byte, []int)

Deprecated: Use MuteGlobalChatsResponse.ProtoReflect.Descriptor instead.

func (*MuteGlobalChatsResponse) ProtoMessage

func (*MuteGlobalChatsResponse) ProtoMessage()

func (*MuteGlobalChatsResponse) ProtoReflect added in v0.8.4

func (x *MuteGlobalChatsResponse) ProtoReflect() protoreflect.Message

func (*MuteGlobalChatsResponse) Reset

func (x *MuteGlobalChatsResponse) Reset()

func (*MuteGlobalChatsResponse) String

func (x *MuteGlobalChatsResponse) String() string

func (*MuteGlobalChatsResponse) Validate

func (m *MuteGlobalChatsResponse) Validate() error

Validate checks the field values on MuteGlobalChatsResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type MuteGlobalChatsResponseValidationError

type MuteGlobalChatsResponseValidationError struct {
	// contains filtered or unexported fields
}

MuteGlobalChatsResponseValidationError is the validation error returned by MuteGlobalChatsResponse.Validate if the designated constraints aren't met.

func (MuteGlobalChatsResponseValidationError) Cause

Cause function returns cause value.

func (MuteGlobalChatsResponseValidationError) Error

Error satisfies the builtin error interface

func (MuteGlobalChatsResponseValidationError) ErrorName

ErrorName returns error name.

func (MuteGlobalChatsResponseValidationError) Field

Field function returns field value.

func (MuteGlobalChatsResponseValidationError) Key

Key function returns key value.

func (MuteGlobalChatsResponseValidationError) Reason

Reason function returns reason value.

type PunishmentType

type PunishmentType int32
const (
	PunishmentType_UNKNOWN_PUNISHMENT PunishmentType = 0
	PunishmentType_BAN                PunishmentType = 1
	PunishmentType_BLOCK              PunishmentType = 2
	PunishmentType_WARN               PunishmentType = 3
	PunishmentType_ADMIN_JAIL         PunishmentType = 4
)

func (PunishmentType) Descriptor added in v0.8.4

func (PunishmentType) Enum added in v0.8.4

func (x PunishmentType) Enum() *PunishmentType

func (PunishmentType) EnumDescriptor deprecated

func (PunishmentType) EnumDescriptor() ([]byte, []int)

Deprecated: Use PunishmentType.Descriptor instead.

func (PunishmentType) Number added in v0.8.4

func (PunishmentType) String

func (x PunishmentType) String() string

func (PunishmentType) Type added in v0.8.4

type UnAdminJailMessage

type UnAdminJailMessage struct {
	Player    uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	Character uint32 `protobuf:"varint,2,opt,name=character,proto3" json:"character,omitempty"`
	// contains filtered or unexported fields
}

func (*UnAdminJailMessage) Descriptor deprecated

func (*UnAdminJailMessage) Descriptor() ([]byte, []int)

Deprecated: Use UnAdminJailMessage.ProtoReflect.Descriptor instead.

func (*UnAdminJailMessage) GetCharacter

func (x *UnAdminJailMessage) GetCharacter() uint32

func (*UnAdminJailMessage) GetPlayer

func (x *UnAdminJailMessage) GetPlayer() uint32

func (*UnAdminJailMessage) ProtoMessage

func (*UnAdminJailMessage) ProtoMessage()

func (*UnAdminJailMessage) ProtoReflect added in v0.8.4

func (x *UnAdminJailMessage) ProtoReflect() protoreflect.Message

func (*UnAdminJailMessage) Reset

func (x *UnAdminJailMessage) Reset()

func (*UnAdminJailMessage) String

func (x *UnAdminJailMessage) String() string

func (*UnAdminJailMessage) Validate

func (m *UnAdminJailMessage) Validate() error

Validate checks the field values on UnAdminJailMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnAdminJailMessageValidationError

type UnAdminJailMessageValidationError struct {
	// contains filtered or unexported fields
}

UnAdminJailMessageValidationError is the validation error returned by UnAdminJailMessage.Validate if the designated constraints aren't met.

func (UnAdminJailMessageValidationError) Cause

Cause function returns cause value.

func (UnAdminJailMessageValidationError) Error

Error satisfies the builtin error interface

func (UnAdminJailMessageValidationError) ErrorName

ErrorName returns error name.

func (UnAdminJailMessageValidationError) Field

Field function returns field value.

func (UnAdminJailMessageValidationError) Key

Key function returns key value.

func (UnAdminJailMessageValidationError) Reason

Reason function returns reason value.

type UnAdminJailRequest

type UnAdminJailRequest struct {
	Character uint32 `protobuf:"varint,1,opt,name=character,proto3" json:"character,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `UnAdminJail`.

func (*UnAdminJailRequest) Descriptor deprecated

func (*UnAdminJailRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnAdminJailRequest.ProtoReflect.Descriptor instead.

func (*UnAdminJailRequest) GetCharacter

func (x *UnAdminJailRequest) GetCharacter() uint32

func (*UnAdminJailRequest) ProtoMessage

func (*UnAdminJailRequest) ProtoMessage()

func (*UnAdminJailRequest) ProtoReflect added in v0.8.4

func (x *UnAdminJailRequest) ProtoReflect() protoreflect.Message

func (*UnAdminJailRequest) Reset

func (x *UnAdminJailRequest) Reset()

func (*UnAdminJailRequest) String

func (x *UnAdminJailRequest) String() string

func (*UnAdminJailRequest) Validate

func (m *UnAdminJailRequest) Validate() error

Validate checks the field values on UnAdminJailRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnAdminJailRequestValidationError

type UnAdminJailRequestValidationError struct {
	// contains filtered or unexported fields
}

UnAdminJailRequestValidationError is the validation error returned by UnAdminJailRequest.Validate if the designated constraints aren't met.

func (UnAdminJailRequestValidationError) Cause

Cause function returns cause value.

func (UnAdminJailRequestValidationError) Error

Error satisfies the builtin error interface

func (UnAdminJailRequestValidationError) ErrorName

ErrorName returns error name.

func (UnAdminJailRequestValidationError) Field

Field function returns field value.

func (UnAdminJailRequestValidationError) Key

Key function returns key value.

func (UnAdminJailRequestValidationError) Reason

Reason function returns reason value.

type UnAdminJailResponse

type UnAdminJailResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `UnAdminJail`.

func (*UnAdminJailResponse) Descriptor deprecated

func (*UnAdminJailResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnAdminJailResponse.ProtoReflect.Descriptor instead.

func (*UnAdminJailResponse) ProtoMessage

func (*UnAdminJailResponse) ProtoMessage()

func (*UnAdminJailResponse) ProtoReflect added in v0.8.4

func (x *UnAdminJailResponse) ProtoReflect() protoreflect.Message

func (*UnAdminJailResponse) Reset

func (x *UnAdminJailResponse) Reset()

func (*UnAdminJailResponse) String

func (x *UnAdminJailResponse) String() string

func (*UnAdminJailResponse) Validate

func (m *UnAdminJailResponse) Validate() error

Validate checks the field values on UnAdminJailResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnAdminJailResponseValidationError

type UnAdminJailResponseValidationError struct {
	// contains filtered or unexported fields
}

UnAdminJailResponseValidationError is the validation error returned by UnAdminJailResponse.Validate if the designated constraints aren't met.

func (UnAdminJailResponseValidationError) Cause

Cause function returns cause value.

func (UnAdminJailResponseValidationError) Error

Error satisfies the builtin error interface

func (UnAdminJailResponseValidationError) ErrorName

ErrorName returns error name.

func (UnAdminJailResponseValidationError) Field

Field function returns field value.

func (UnAdminJailResponseValidationError) Key

Key function returns key value.

func (UnAdminJailResponseValidationError) Reason

Reason function returns reason value.

type UnBanMessage

type UnBanMessage struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	BanId  uint32 `protobuf:"varint,2,opt,name=ban_id,json=banId,proto3" json:"ban_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UnBanMessage) Descriptor deprecated

func (*UnBanMessage) Descriptor() ([]byte, []int)

Deprecated: Use UnBanMessage.ProtoReflect.Descriptor instead.

func (*UnBanMessage) GetBanId

func (x *UnBanMessage) GetBanId() uint32

func (*UnBanMessage) GetPlayer

func (x *UnBanMessage) GetPlayer() uint32

func (*UnBanMessage) ProtoMessage

func (*UnBanMessage) ProtoMessage()

func (*UnBanMessage) ProtoReflect added in v0.8.4

func (x *UnBanMessage) ProtoReflect() protoreflect.Message

func (*UnBanMessage) Reset

func (x *UnBanMessage) Reset()

func (*UnBanMessage) String

func (x *UnBanMessage) String() string

func (*UnBanMessage) Validate

func (m *UnBanMessage) Validate() error

Validate checks the field values on UnBanMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnBanMessageValidationError

type UnBanMessageValidationError struct {
	// contains filtered or unexported fields
}

UnBanMessageValidationError is the validation error returned by UnBanMessage.Validate if the designated constraints aren't met.

func (UnBanMessageValidationError) Cause

Cause function returns cause value.

func (UnBanMessageValidationError) Error

Error satisfies the builtin error interface

func (UnBanMessageValidationError) ErrorName

func (e UnBanMessageValidationError) ErrorName() string

ErrorName returns error name.

func (UnBanMessageValidationError) Field

Field function returns field value.

func (UnBanMessageValidationError) Key

Key function returns key value.

func (UnBanMessageValidationError) Reason

Reason function returns reason value.

type UnBanRequest

type UnBanRequest struct {
	BanId  uint32 `protobuf:"varint,1,opt,name=ban_id,json=banId,proto3" json:"ban_id,omitempty"`
	Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `UnBan`.

func (*UnBanRequest) Descriptor deprecated

func (*UnBanRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnBanRequest.ProtoReflect.Descriptor instead.

func (*UnBanRequest) GetBanId

func (x *UnBanRequest) GetBanId() uint32

func (*UnBanRequest) GetReason

func (x *UnBanRequest) GetReason() string

func (*UnBanRequest) ProtoMessage

func (*UnBanRequest) ProtoMessage()

func (*UnBanRequest) ProtoReflect added in v0.8.4

func (x *UnBanRequest) ProtoReflect() protoreflect.Message

func (*UnBanRequest) Reset

func (x *UnBanRequest) Reset()

func (*UnBanRequest) String

func (x *UnBanRequest) String() string

func (*UnBanRequest) Validate

func (m *UnBanRequest) Validate() error

Validate checks the field values on UnBanRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnBanRequestValidationError

type UnBanRequestValidationError struct {
	// contains filtered or unexported fields
}

UnBanRequestValidationError is the validation error returned by UnBanRequest.Validate if the designated constraints aren't met.

func (UnBanRequestValidationError) Cause

Cause function returns cause value.

func (UnBanRequestValidationError) Error

Error satisfies the builtin error interface

func (UnBanRequestValidationError) ErrorName

func (e UnBanRequestValidationError) ErrorName() string

ErrorName returns error name.

func (UnBanRequestValidationError) Field

Field function returns field value.

func (UnBanRequestValidationError) Key

Key function returns key value.

func (UnBanRequestValidationError) Reason

Reason function returns reason value.

type UnBanResponse

type UnBanResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `UnBan`.

func (*UnBanResponse) Descriptor deprecated

func (*UnBanResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnBanResponse.ProtoReflect.Descriptor instead.

func (*UnBanResponse) ProtoMessage

func (*UnBanResponse) ProtoMessage()

func (*UnBanResponse) ProtoReflect added in v0.8.4

func (x *UnBanResponse) ProtoReflect() protoreflect.Message

func (*UnBanResponse) Reset

func (x *UnBanResponse) Reset()

func (*UnBanResponse) String

func (x *UnBanResponse) String() string

func (*UnBanResponse) Validate

func (m *UnBanResponse) Validate() error

Validate checks the field values on UnBanResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnBanResponseValidationError

type UnBanResponseValidationError struct {
	// contains filtered or unexported fields
}

UnBanResponseValidationError is the validation error returned by UnBanResponse.Validate if the designated constraints aren't met.

func (UnBanResponseValidationError) Cause

Cause function returns cause value.

func (UnBanResponseValidationError) Error

Error satisfies the builtin error interface

func (UnBanResponseValidationError) ErrorName

func (e UnBanResponseValidationError) ErrorName() string

ErrorName returns error name.

func (UnBanResponseValidationError) Field

Field function returns field value.

func (UnBanResponseValidationError) Key

Key function returns key value.

func (UnBanResponseValidationError) Reason

Reason function returns reason value.

type UnBlockMessage

type UnBlockMessage struct {
	Player  uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	BlockId uint32 `protobuf:"varint,2,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UnBlockMessage) Descriptor deprecated

func (*UnBlockMessage) Descriptor() ([]byte, []int)

Deprecated: Use UnBlockMessage.ProtoReflect.Descriptor instead.

func (*UnBlockMessage) GetBlockId

func (x *UnBlockMessage) GetBlockId() uint32

func (*UnBlockMessage) GetPlayer

func (x *UnBlockMessage) GetPlayer() uint32

func (*UnBlockMessage) ProtoMessage

func (*UnBlockMessage) ProtoMessage()

func (*UnBlockMessage) ProtoReflect added in v0.8.4

func (x *UnBlockMessage) ProtoReflect() protoreflect.Message

func (*UnBlockMessage) Reset

func (x *UnBlockMessage) Reset()

func (*UnBlockMessage) String

func (x *UnBlockMessage) String() string

func (*UnBlockMessage) Validate

func (m *UnBlockMessage) Validate() error

Validate checks the field values on UnBlockMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnBlockMessageValidationError

type UnBlockMessageValidationError struct {
	// contains filtered or unexported fields
}

UnBlockMessageValidationError is the validation error returned by UnBlockMessage.Validate if the designated constraints aren't met.

func (UnBlockMessageValidationError) Cause

Cause function returns cause value.

func (UnBlockMessageValidationError) Error

Error satisfies the builtin error interface

func (UnBlockMessageValidationError) ErrorName

func (e UnBlockMessageValidationError) ErrorName() string

ErrorName returns error name.

func (UnBlockMessageValidationError) Field

Field function returns field value.

func (UnBlockMessageValidationError) Key

Key function returns key value.

func (UnBlockMessageValidationError) Reason

Reason function returns reason value.

type UnBlockRequest

type UnBlockRequest struct {
	BlockId uint32 `protobuf:"varint,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
	Reason  string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `UnBlock`.

func (*UnBlockRequest) Descriptor deprecated

func (*UnBlockRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnBlockRequest.ProtoReflect.Descriptor instead.

func (*UnBlockRequest) GetBlockId

func (x *UnBlockRequest) GetBlockId() uint32

func (*UnBlockRequest) GetReason

func (x *UnBlockRequest) GetReason() string

func (*UnBlockRequest) ProtoMessage

func (*UnBlockRequest) ProtoMessage()

func (*UnBlockRequest) ProtoReflect added in v0.8.4

func (x *UnBlockRequest) ProtoReflect() protoreflect.Message

func (*UnBlockRequest) Reset

func (x *UnBlockRequest) Reset()

func (*UnBlockRequest) String

func (x *UnBlockRequest) String() string

func (*UnBlockRequest) Validate

func (m *UnBlockRequest) Validate() error

Validate checks the field values on UnBlockRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnBlockRequestValidationError

type UnBlockRequestValidationError struct {
	// contains filtered or unexported fields
}

UnBlockRequestValidationError is the validation error returned by UnBlockRequest.Validate if the designated constraints aren't met.

func (UnBlockRequestValidationError) Cause

Cause function returns cause value.

func (UnBlockRequestValidationError) Error

Error satisfies the builtin error interface

func (UnBlockRequestValidationError) ErrorName

func (e UnBlockRequestValidationError) ErrorName() string

ErrorName returns error name.

func (UnBlockRequestValidationError) Field

Field function returns field value.

func (UnBlockRequestValidationError) Key

Key function returns key value.

func (UnBlockRequestValidationError) Reason

Reason function returns reason value.

type UnBlockResponse

type UnBlockResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `UnBlock`.

func (*UnBlockResponse) Descriptor deprecated

func (*UnBlockResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnBlockResponse.ProtoReflect.Descriptor instead.

func (*UnBlockResponse) ProtoMessage

func (*UnBlockResponse) ProtoMessage()

func (*UnBlockResponse) ProtoReflect added in v0.8.4

func (x *UnBlockResponse) ProtoReflect() protoreflect.Message

func (*UnBlockResponse) Reset

func (x *UnBlockResponse) Reset()

func (*UnBlockResponse) String

func (x *UnBlockResponse) String() string

func (*UnBlockResponse) Validate

func (m *UnBlockResponse) Validate() error

Validate checks the field values on UnBlockResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnBlockResponseValidationError

type UnBlockResponseValidationError struct {
	// contains filtered or unexported fields
}

UnBlockResponseValidationError is the validation error returned by UnBlockResponse.Validate if the designated constraints aren't met.

func (UnBlockResponseValidationError) Cause

Cause function returns cause value.

func (UnBlockResponseValidationError) Error

Error satisfies the builtin error interface

func (UnBlockResponseValidationError) ErrorName

func (e UnBlockResponseValidationError) ErrorName() string

ErrorName returns error name.

func (UnBlockResponseValidationError) Field

Field function returns field value.

func (UnBlockResponseValidationError) Key

Key function returns key value.

func (UnBlockResponseValidationError) Reason

Reason function returns reason value.

type UnMuteGlobalChatsRequest

type UnMuteGlobalChatsRequest struct {
	Account uint32 `protobuf:"varint,1,opt,name=account,proto3" json:"account,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `UnMuteGlobalChats`.

func (*UnMuteGlobalChatsRequest) Descriptor deprecated

func (*UnMuteGlobalChatsRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnMuteGlobalChatsRequest.ProtoReflect.Descriptor instead.

func (*UnMuteGlobalChatsRequest) GetAccount

func (x *UnMuteGlobalChatsRequest) GetAccount() uint32

func (*UnMuteGlobalChatsRequest) ProtoMessage

func (*UnMuteGlobalChatsRequest) ProtoMessage()

func (*UnMuteGlobalChatsRequest) ProtoReflect added in v0.8.4

func (x *UnMuteGlobalChatsRequest) ProtoReflect() protoreflect.Message

func (*UnMuteGlobalChatsRequest) Reset

func (x *UnMuteGlobalChatsRequest) Reset()

func (*UnMuteGlobalChatsRequest) String

func (x *UnMuteGlobalChatsRequest) String() string

func (*UnMuteGlobalChatsRequest) Validate

func (m *UnMuteGlobalChatsRequest) Validate() error

Validate checks the field values on UnMuteGlobalChatsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnMuteGlobalChatsRequestValidationError

type UnMuteGlobalChatsRequestValidationError struct {
	// contains filtered or unexported fields
}

UnMuteGlobalChatsRequestValidationError is the validation error returned by UnMuteGlobalChatsRequest.Validate if the designated constraints aren't met.

func (UnMuteGlobalChatsRequestValidationError) Cause

Cause function returns cause value.

func (UnMuteGlobalChatsRequestValidationError) Error

Error satisfies the builtin error interface

func (UnMuteGlobalChatsRequestValidationError) ErrorName

ErrorName returns error name.

func (UnMuteGlobalChatsRequestValidationError) Field

Field function returns field value.

func (UnMuteGlobalChatsRequestValidationError) Key

Key function returns key value.

func (UnMuteGlobalChatsRequestValidationError) Reason

Reason function returns reason value.

type UnMuteGlobalChatsResponse

type UnMuteGlobalChatsResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `UnMuteGlobalChats`.

func (*UnMuteGlobalChatsResponse) Descriptor deprecated

func (*UnMuteGlobalChatsResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnMuteGlobalChatsResponse.ProtoReflect.Descriptor instead.

func (*UnMuteGlobalChatsResponse) ProtoMessage

func (*UnMuteGlobalChatsResponse) ProtoMessage()

func (*UnMuteGlobalChatsResponse) ProtoReflect added in v0.8.4

func (*UnMuteGlobalChatsResponse) Reset

func (x *UnMuteGlobalChatsResponse) Reset()

func (*UnMuteGlobalChatsResponse) String

func (x *UnMuteGlobalChatsResponse) String() string

func (*UnMuteGlobalChatsResponse) Validate

func (m *UnMuteGlobalChatsResponse) Validate() error

Validate checks the field values on UnMuteGlobalChatsResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnMuteGlobalChatsResponseValidationError

type UnMuteGlobalChatsResponseValidationError struct {
	// contains filtered or unexported fields
}

UnMuteGlobalChatsResponseValidationError is the validation error returned by UnMuteGlobalChatsResponse.Validate if the designated constraints aren't met.

func (UnMuteGlobalChatsResponseValidationError) Cause

Cause function returns cause value.

func (UnMuteGlobalChatsResponseValidationError) Error

Error satisfies the builtin error interface

func (UnMuteGlobalChatsResponseValidationError) ErrorName

ErrorName returns error name.

func (UnMuteGlobalChatsResponseValidationError) Field

Field function returns field value.

func (UnMuteGlobalChatsResponseValidationError) Key

Key function returns key value.

func (UnMuteGlobalChatsResponseValidationError) Reason

Reason function returns reason value.

type UnWarnMessage

type UnWarnMessage struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	WarnId uint32 `protobuf:"varint,2,opt,name=warn_id,json=warnId,proto3" json:"warn_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UnWarnMessage) Descriptor deprecated

func (*UnWarnMessage) Descriptor() ([]byte, []int)

Deprecated: Use UnWarnMessage.ProtoReflect.Descriptor instead.

func (*UnWarnMessage) GetPlayer

func (x *UnWarnMessage) GetPlayer() uint32

func (*UnWarnMessage) GetWarnId

func (x *UnWarnMessage) GetWarnId() uint32

func (*UnWarnMessage) ProtoMessage

func (*UnWarnMessage) ProtoMessage()

func (*UnWarnMessage) ProtoReflect added in v0.8.4

func (x *UnWarnMessage) ProtoReflect() protoreflect.Message

func (*UnWarnMessage) Reset

func (x *UnWarnMessage) Reset()

func (*UnWarnMessage) String

func (x *UnWarnMessage) String() string

func (*UnWarnMessage) Validate

func (m *UnWarnMessage) Validate() error

Validate checks the field values on UnWarnMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnWarnMessageValidationError

type UnWarnMessageValidationError struct {
	// contains filtered or unexported fields
}

UnWarnMessageValidationError is the validation error returned by UnWarnMessage.Validate if the designated constraints aren't met.

func (UnWarnMessageValidationError) Cause

Cause function returns cause value.

func (UnWarnMessageValidationError) Error

Error satisfies the builtin error interface

func (UnWarnMessageValidationError) ErrorName

func (e UnWarnMessageValidationError) ErrorName() string

ErrorName returns error name.

func (UnWarnMessageValidationError) Field

Field function returns field value.

func (UnWarnMessageValidationError) Key

Key function returns key value.

func (UnWarnMessageValidationError) Reason

Reason function returns reason value.

type UnWarnRequest

type UnWarnRequest struct {
	WarnId uint32 `protobuf:"varint,1,opt,name=warn_id,json=warnId,proto3" json:"warn_id,omitempty"`
	Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `UnWarn`.

func (*UnWarnRequest) Descriptor deprecated

func (*UnWarnRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnWarnRequest.ProtoReflect.Descriptor instead.

func (*UnWarnRequest) GetReason

func (x *UnWarnRequest) GetReason() string

func (*UnWarnRequest) GetWarnId

func (x *UnWarnRequest) GetWarnId() uint32

func (*UnWarnRequest) ProtoMessage

func (*UnWarnRequest) ProtoMessage()

func (*UnWarnRequest) ProtoReflect added in v0.8.4

func (x *UnWarnRequest) ProtoReflect() protoreflect.Message

func (*UnWarnRequest) Reset

func (x *UnWarnRequest) Reset()

func (*UnWarnRequest) String

func (x *UnWarnRequest) String() string

func (*UnWarnRequest) Validate

func (m *UnWarnRequest) Validate() error

Validate checks the field values on UnWarnRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnWarnRequestValidationError

type UnWarnRequestValidationError struct {
	// contains filtered or unexported fields
}

UnWarnRequestValidationError is the validation error returned by UnWarnRequest.Validate if the designated constraints aren't met.

func (UnWarnRequestValidationError) Cause

Cause function returns cause value.

func (UnWarnRequestValidationError) Error

Error satisfies the builtin error interface

func (UnWarnRequestValidationError) ErrorName

func (e UnWarnRequestValidationError) ErrorName() string

ErrorName returns error name.

func (UnWarnRequestValidationError) Field

Field function returns field value.

func (UnWarnRequestValidationError) Key

Key function returns key value.

func (UnWarnRequestValidationError) Reason

Reason function returns reason value.

type UnWarnResponse

type UnWarnResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `UnWarn`.

func (*UnWarnResponse) Descriptor deprecated

func (*UnWarnResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnWarnResponse.ProtoReflect.Descriptor instead.

func (*UnWarnResponse) ProtoMessage

func (*UnWarnResponse) ProtoMessage()

func (*UnWarnResponse) ProtoReflect added in v0.8.4

func (x *UnWarnResponse) ProtoReflect() protoreflect.Message

func (*UnWarnResponse) Reset

func (x *UnWarnResponse) Reset()

func (*UnWarnResponse) String

func (x *UnWarnResponse) String() string

func (*UnWarnResponse) Validate

func (m *UnWarnResponse) Validate() error

Validate checks the field values on UnWarnResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnWarnResponseValidationError

type UnWarnResponseValidationError struct {
	// contains filtered or unexported fields
}

UnWarnResponseValidationError is the validation error returned by UnWarnResponse.Validate if the designated constraints aren't met.

func (UnWarnResponseValidationError) Cause

Cause function returns cause value.

func (UnWarnResponseValidationError) Error

Error satisfies the builtin error interface

func (UnWarnResponseValidationError) ErrorName

func (e UnWarnResponseValidationError) ErrorName() string

ErrorName returns error name.

func (UnWarnResponseValidationError) Field

Field function returns field value.

func (UnWarnResponseValidationError) Key

Key function returns key value.

func (UnWarnResponseValidationError) Reason

Reason function returns reason value.

type UnimplementedMruVPunishmentsServiceServer

type UnimplementedMruVPunishmentsServiceServer struct {
}

UnimplementedMruVPunishmentsServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedMruVPunishmentsServiceServer) AdminJail

func (*UnimplementedMruVPunishmentsServiceServer) Ban

func (*UnimplementedMruVPunishmentsServiceServer) Block

func (*UnimplementedMruVPunishmentsServiceServer) GetBan

func (*UnimplementedMruVPunishmentsServiceServer) GetBlock

func (*UnimplementedMruVPunishmentsServiceServer) GetPlayerAdminJail

func (*UnimplementedMruVPunishmentsServiceServer) GetPlayerBans

func (*UnimplementedMruVPunishmentsServiceServer) GetPlayerWarns

func (*UnimplementedMruVPunishmentsServiceServer) GetWarn

func (*UnimplementedMruVPunishmentsServiceServer) IsCharacterBlocked

func (*UnimplementedMruVPunishmentsServiceServer) IsCharacterJailed

func (*UnimplementedMruVPunishmentsServiceServer) IsPlayerBanned

func (*UnimplementedMruVPunishmentsServiceServer) MuteGlobalChats

func (*UnimplementedMruVPunishmentsServiceServer) UnAdminJail

func (*UnimplementedMruVPunishmentsServiceServer) UnBan

func (*UnimplementedMruVPunishmentsServiceServer) UnBlock

func (*UnimplementedMruVPunishmentsServiceServer) UnMuteGlobalChats

func (*UnimplementedMruVPunishmentsServiceServer) UnWarn

func (*UnimplementedMruVPunishmentsServiceServer) Warn

func (*UnimplementedMruVPunishmentsServiceServer) WatchBans

func (*UnimplementedMruVPunishmentsServiceServer) WatchBlocks

func (*UnimplementedMruVPunishmentsServiceServer) WatchUnBans

func (*UnimplementedMruVPunishmentsServiceServer) WatchUnBlocks

func (*UnimplementedMruVPunishmentsServiceServer) WatchUnWarns

func (*UnimplementedMruVPunishmentsServiceServer) WatchWarns

type WarnMessage

type WarnMessage struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	// A character, that was given a warning.
	Character uint32 `protobuf:"varint,2,opt,name=character,proto3" json:"character,omitempty"`
	// Expiration date in Unix time.
	ExpirationDate int64 `protobuf:"varint,3,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
	// A warn reason.
	Reason string `protobuf:"bytes,4,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that warned a player. 0 = system warn.
	Admin uint32 `protobuf:"varint,5,opt,name=admin,proto3" json:"admin,omitempty"`
	// Date on which a warn was issued in Unix time.
	WarnDate int64 `protobuf:"varint,6,opt,name=warn_date,json=warnDate,proto3" json:"warn_date,omitempty"`
	// Warn status. True = active, false = deactivated.
	Active bool `protobuf:"varint,7,opt,name=active,proto3" json:"active,omitempty"`
	// Date of unwarn in Unix time.
	// This field is set only when warn was deactivated.
	UnwarnDate int64 `protobuf:"varint,8,opt,name=unwarn_date,json=unwarnDate,proto3" json:"unwarn_date,omitempty"`
	// Admin that deactivated a warn.
	// This field is set only when warn was deactivated.
	UnwarnAdmin uint32 `protobuf:"varint,9,opt,name=unwarn_admin,json=unwarnAdmin,proto3" json:"unwarn_admin,omitempty"`
	// contains filtered or unexported fields
}

func (*WarnMessage) Descriptor deprecated

func (*WarnMessage) Descriptor() ([]byte, []int)

Deprecated: Use WarnMessage.ProtoReflect.Descriptor instead.

func (*WarnMessage) GetActive

func (x *WarnMessage) GetActive() bool

func (*WarnMessage) GetAdmin

func (x *WarnMessage) GetAdmin() uint32

func (*WarnMessage) GetCharacter

func (x *WarnMessage) GetCharacter() uint32

func (*WarnMessage) GetExpirationDate

func (x *WarnMessage) GetExpirationDate() int64

func (*WarnMessage) GetPlayer

func (x *WarnMessage) GetPlayer() uint32

func (*WarnMessage) GetReason

func (x *WarnMessage) GetReason() string

func (*WarnMessage) GetUnwarnAdmin

func (x *WarnMessage) GetUnwarnAdmin() uint32

func (*WarnMessage) GetUnwarnDate

func (x *WarnMessage) GetUnwarnDate() int64

func (*WarnMessage) GetWarnDate

func (x *WarnMessage) GetWarnDate() int64

func (*WarnMessage) ProtoMessage

func (*WarnMessage) ProtoMessage()

func (*WarnMessage) ProtoReflect added in v0.8.4

func (x *WarnMessage) ProtoReflect() protoreflect.Message

func (*WarnMessage) Reset

func (x *WarnMessage) Reset()

func (*WarnMessage) String

func (x *WarnMessage) String() string

func (*WarnMessage) Validate

func (m *WarnMessage) Validate() error

Validate checks the field values on WarnMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WarnMessageValidationError

type WarnMessageValidationError struct {
	// contains filtered or unexported fields
}

WarnMessageValidationError is the validation error returned by WarnMessage.Validate if the designated constraints aren't met.

func (WarnMessageValidationError) Cause

Cause function returns cause value.

func (WarnMessageValidationError) Error

Error satisfies the builtin error interface

func (WarnMessageValidationError) ErrorName

func (e WarnMessageValidationError) ErrorName() string

ErrorName returns error name.

func (WarnMessageValidationError) Field

Field function returns field value.

func (WarnMessageValidationError) Key

Key function returns key value.

func (WarnMessageValidationError) Reason

Reason function returns reason value.

type WarnRequest

type WarnRequest struct {
	Player uint32 `protobuf:"varint,1,opt,name=player,proto3" json:"player,omitempty"`
	// Player character that was accused.
	// Optional.
	Character uint32 `protobuf:"varint,2,opt,name=character,proto3" json:"character,omitempty"`
	// Warn expiration time in days. 0 = permanent warn.
	Time uint32 `protobuf:"varint,3,opt,name=time,proto3" json:"time,omitempty"`
	// Warn reason.
	Reason string `protobuf:"bytes,4,opt,name=reason,proto3" json:"reason,omitempty"`
	// Admin that warned player. 0 = system warn.
	Admin uint32 `protobuf:"varint,5,opt,name=admin,proto3" json:"admin,omitempty"`
	// contains filtered or unexported fields
}

Request message for rpc `Warn`.

func (*WarnRequest) Descriptor deprecated

func (*WarnRequest) Descriptor() ([]byte, []int)

Deprecated: Use WarnRequest.ProtoReflect.Descriptor instead.

func (*WarnRequest) GetAdmin

func (x *WarnRequest) GetAdmin() uint32

func (*WarnRequest) GetCharacter

func (x *WarnRequest) GetCharacter() uint32

func (*WarnRequest) GetPlayer

func (x *WarnRequest) GetPlayer() uint32

func (*WarnRequest) GetReason

func (x *WarnRequest) GetReason() string

func (*WarnRequest) GetTime

func (x *WarnRequest) GetTime() uint32

func (*WarnRequest) ProtoMessage

func (*WarnRequest) ProtoMessage()

func (*WarnRequest) ProtoReflect added in v0.8.4

func (x *WarnRequest) ProtoReflect() protoreflect.Message

func (*WarnRequest) Reset

func (x *WarnRequest) Reset()

func (*WarnRequest) String

func (x *WarnRequest) String() string

func (*WarnRequest) Validate

func (m *WarnRequest) Validate() error

Validate checks the field values on WarnRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WarnRequestValidationError

type WarnRequestValidationError struct {
	// contains filtered or unexported fields
}

WarnRequestValidationError is the validation error returned by WarnRequest.Validate if the designated constraints aren't met.

func (WarnRequestValidationError) Cause

Cause function returns cause value.

func (WarnRequestValidationError) Error

Error satisfies the builtin error interface

func (WarnRequestValidationError) ErrorName

func (e WarnRequestValidationError) ErrorName() string

ErrorName returns error name.

func (WarnRequestValidationError) Field

Field function returns field value.

func (WarnRequestValidationError) Key

Key function returns key value.

func (WarnRequestValidationError) Reason

Reason function returns reason value.

type WarnResponse

type WarnResponse struct {
	WarnId uint32 `protobuf:"varint,1,opt,name=warn_id,json=warnId,proto3" json:"warn_id,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `Warn`.

func (*WarnResponse) Descriptor deprecated

func (*WarnResponse) Descriptor() ([]byte, []int)

Deprecated: Use WarnResponse.ProtoReflect.Descriptor instead.

func (*WarnResponse) GetWarnId

func (x *WarnResponse) GetWarnId() uint32

func (*WarnResponse) ProtoMessage

func (*WarnResponse) ProtoMessage()

func (*WarnResponse) ProtoReflect added in v0.8.4

func (x *WarnResponse) ProtoReflect() protoreflect.Message

func (*WarnResponse) Reset

func (x *WarnResponse) Reset()

func (*WarnResponse) String

func (x *WarnResponse) String() string

func (*WarnResponse) Validate

func (m *WarnResponse) Validate() error

Validate checks the field values on WarnResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WarnResponseValidationError

type WarnResponseValidationError struct {
	// contains filtered or unexported fields
}

WarnResponseValidationError is the validation error returned by WarnResponse.Validate if the designated constraints aren't met.

func (WarnResponseValidationError) Cause

Cause function returns cause value.

func (WarnResponseValidationError) Error

Error satisfies the builtin error interface

func (WarnResponseValidationError) ErrorName

func (e WarnResponseValidationError) ErrorName() string

ErrorName returns error name.

func (WarnResponseValidationError) Field

Field function returns field value.

func (WarnResponseValidationError) Key

Key function returns key value.

func (WarnResponseValidationError) Reason

Reason function returns reason value.

type WatchAdminJailsRequest

type WatchAdminJailsRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchAdminJails`.

func (*WatchAdminJailsRequest) Descriptor deprecated

func (*WatchAdminJailsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchAdminJailsRequest.ProtoReflect.Descriptor instead.

func (*WatchAdminJailsRequest) ProtoMessage

func (*WatchAdminJailsRequest) ProtoMessage()

func (*WatchAdminJailsRequest) ProtoReflect added in v0.8.4

func (x *WatchAdminJailsRequest) ProtoReflect() protoreflect.Message

func (*WatchAdminJailsRequest) Reset

func (x *WatchAdminJailsRequest) Reset()

func (*WatchAdminJailsRequest) String

func (x *WatchAdminJailsRequest) String() string

func (*WatchAdminJailsRequest) Validate

func (m *WatchAdminJailsRequest) Validate() error

Validate checks the field values on WatchAdminJailsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchAdminJailsRequestValidationError

type WatchAdminJailsRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchAdminJailsRequestValidationError is the validation error returned by WatchAdminJailsRequest.Validate if the designated constraints aren't met.

func (WatchAdminJailsRequestValidationError) Cause

Cause function returns cause value.

func (WatchAdminJailsRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchAdminJailsRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchAdminJailsRequestValidationError) Field

Field function returns field value.

func (WatchAdminJailsRequestValidationError) Key

Key function returns key value.

func (WatchAdminJailsRequestValidationError) Reason

Reason function returns reason value.

type WatchBansRequest

type WatchBansRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchBans`.

func (*WatchBansRequest) Descriptor deprecated

func (*WatchBansRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchBansRequest.ProtoReflect.Descriptor instead.

func (*WatchBansRequest) ProtoMessage

func (*WatchBansRequest) ProtoMessage()

func (*WatchBansRequest) ProtoReflect added in v0.8.4

func (x *WatchBansRequest) ProtoReflect() protoreflect.Message

func (*WatchBansRequest) Reset

func (x *WatchBansRequest) Reset()

func (*WatchBansRequest) String

func (x *WatchBansRequest) String() string

func (*WatchBansRequest) Validate

func (m *WatchBansRequest) Validate() error

Validate checks the field values on WatchBansRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchBansRequestValidationError

type WatchBansRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchBansRequestValidationError is the validation error returned by WatchBansRequest.Validate if the designated constraints aren't met.

func (WatchBansRequestValidationError) Cause

Cause function returns cause value.

func (WatchBansRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchBansRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchBansRequestValidationError) Field

Field function returns field value.

func (WatchBansRequestValidationError) Key

Key function returns key value.

func (WatchBansRequestValidationError) Reason

Reason function returns reason value.

type WatchBlocksRequest

type WatchBlocksRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchBlocks`.

func (*WatchBlocksRequest) Descriptor deprecated

func (*WatchBlocksRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchBlocksRequest.ProtoReflect.Descriptor instead.

func (*WatchBlocksRequest) ProtoMessage

func (*WatchBlocksRequest) ProtoMessage()

func (*WatchBlocksRequest) ProtoReflect added in v0.8.4

func (x *WatchBlocksRequest) ProtoReflect() protoreflect.Message

func (*WatchBlocksRequest) Reset

func (x *WatchBlocksRequest) Reset()

func (*WatchBlocksRequest) String

func (x *WatchBlocksRequest) String() string

func (*WatchBlocksRequest) Validate

func (m *WatchBlocksRequest) Validate() error

Validate checks the field values on WatchBlocksRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchBlocksRequestValidationError

type WatchBlocksRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchBlocksRequestValidationError is the validation error returned by WatchBlocksRequest.Validate if the designated constraints aren't met.

func (WatchBlocksRequestValidationError) Cause

Cause function returns cause value.

func (WatchBlocksRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchBlocksRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchBlocksRequestValidationError) Field

Field function returns field value.

func (WatchBlocksRequestValidationError) Key

Key function returns key value.

func (WatchBlocksRequestValidationError) Reason

Reason function returns reason value.

type WatchPlayerAcquittalsRequest

type WatchPlayerAcquittalsRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchPlayerAcquittals`.

func (*WatchPlayerAcquittalsRequest) Descriptor deprecated

func (*WatchPlayerAcquittalsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchPlayerAcquittalsRequest.ProtoReflect.Descriptor instead.

func (*WatchPlayerAcquittalsRequest) ProtoMessage

func (*WatchPlayerAcquittalsRequest) ProtoMessage()

func (*WatchPlayerAcquittalsRequest) ProtoReflect added in v0.8.4

func (*WatchPlayerAcquittalsRequest) Reset

func (x *WatchPlayerAcquittalsRequest) Reset()

func (*WatchPlayerAcquittalsRequest) String

func (*WatchPlayerAcquittalsRequest) Validate

func (m *WatchPlayerAcquittalsRequest) Validate() error

Validate checks the field values on WatchPlayerAcquittalsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchPlayerAcquittalsRequestValidationError

type WatchPlayerAcquittalsRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchPlayerAcquittalsRequestValidationError is the validation error returned by WatchPlayerAcquittalsRequest.Validate if the designated constraints aren't met.

func (WatchPlayerAcquittalsRequestValidationError) Cause

Cause function returns cause value.

func (WatchPlayerAcquittalsRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchPlayerAcquittalsRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchPlayerAcquittalsRequestValidationError) Field

Field function returns field value.

func (WatchPlayerAcquittalsRequestValidationError) Key

Key function returns key value.

func (WatchPlayerAcquittalsRequestValidationError) Reason

Reason function returns reason value.

type WatchPlayerAcquittalsResponse

type WatchPlayerAcquittalsResponse struct {
	// contains filtered or unexported fields
}

Response message for rpc `WatchPlayerAcquittals`.

func (*WatchPlayerAcquittalsResponse) Descriptor deprecated

func (*WatchPlayerAcquittalsResponse) Descriptor() ([]byte, []int)

Deprecated: Use WatchPlayerAcquittalsResponse.ProtoReflect.Descriptor instead.

func (*WatchPlayerAcquittalsResponse) ProtoMessage

func (*WatchPlayerAcquittalsResponse) ProtoMessage()

func (*WatchPlayerAcquittalsResponse) ProtoReflect added in v0.8.4

func (*WatchPlayerAcquittalsResponse) Reset

func (x *WatchPlayerAcquittalsResponse) Reset()

func (*WatchPlayerAcquittalsResponse) String

func (*WatchPlayerAcquittalsResponse) Validate

func (m *WatchPlayerAcquittalsResponse) Validate() error

Validate checks the field values on WatchPlayerAcquittalsResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchPlayerAcquittalsResponseValidationError

type WatchPlayerAcquittalsResponseValidationError struct {
	// contains filtered or unexported fields
}

WatchPlayerAcquittalsResponseValidationError is the validation error returned by WatchPlayerAcquittalsResponse.Validate if the designated constraints aren't met.

func (WatchPlayerAcquittalsResponseValidationError) Cause

Cause function returns cause value.

func (WatchPlayerAcquittalsResponseValidationError) Error

Error satisfies the builtin error interface

func (WatchPlayerAcquittalsResponseValidationError) ErrorName

ErrorName returns error name.

func (WatchPlayerAcquittalsResponseValidationError) Field

Field function returns field value.

func (WatchPlayerAcquittalsResponseValidationError) Key

Key function returns key value.

func (WatchPlayerAcquittalsResponseValidationError) Reason

Reason function returns reason value.

type WatchPlayerPunishmentsRequest

type WatchPlayerPunishmentsRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchPlayerPunishments`.

func (*WatchPlayerPunishmentsRequest) Descriptor deprecated

func (*WatchPlayerPunishmentsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchPlayerPunishmentsRequest.ProtoReflect.Descriptor instead.

func (*WatchPlayerPunishmentsRequest) ProtoMessage

func (*WatchPlayerPunishmentsRequest) ProtoMessage()

func (*WatchPlayerPunishmentsRequest) ProtoReflect added in v0.8.4

func (*WatchPlayerPunishmentsRequest) Reset

func (x *WatchPlayerPunishmentsRequest) Reset()

func (*WatchPlayerPunishmentsRequest) String

func (*WatchPlayerPunishmentsRequest) Validate

func (m *WatchPlayerPunishmentsRequest) Validate() error

Validate checks the field values on WatchPlayerPunishmentsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchPlayerPunishmentsRequestValidationError

type WatchPlayerPunishmentsRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchPlayerPunishmentsRequestValidationError is the validation error returned by WatchPlayerPunishmentsRequest.Validate if the designated constraints aren't met.

func (WatchPlayerPunishmentsRequestValidationError) Cause

Cause function returns cause value.

func (WatchPlayerPunishmentsRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchPlayerPunishmentsRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchPlayerPunishmentsRequestValidationError) Field

Field function returns field value.

func (WatchPlayerPunishmentsRequestValidationError) Key

Key function returns key value.

func (WatchPlayerPunishmentsRequestValidationError) Reason

Reason function returns reason value.

type WatchPlayerPunishmentsResponse

type WatchPlayerPunishmentsResponse struct {
	Type         PunishmentType `protobuf:"varint,1,opt,name=type,proto3,enum=mruv.punishments.PunishmentType" json:"type,omitempty"`
	PunishmentId uint32         `protobuf:"varint,2,opt,name=punishment_id,json=punishmentId,proto3" json:"punishment_id,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `WatchPlayerPunishments`.

func (*WatchPlayerPunishmentsResponse) Descriptor deprecated

func (*WatchPlayerPunishmentsResponse) Descriptor() ([]byte, []int)

Deprecated: Use WatchPlayerPunishmentsResponse.ProtoReflect.Descriptor instead.

func (*WatchPlayerPunishmentsResponse) GetPunishmentId

func (x *WatchPlayerPunishmentsResponse) GetPunishmentId() uint32

func (*WatchPlayerPunishmentsResponse) GetType

func (*WatchPlayerPunishmentsResponse) ProtoMessage

func (*WatchPlayerPunishmentsResponse) ProtoMessage()

func (*WatchPlayerPunishmentsResponse) ProtoReflect added in v0.8.4

func (*WatchPlayerPunishmentsResponse) Reset

func (x *WatchPlayerPunishmentsResponse) Reset()

func (*WatchPlayerPunishmentsResponse) String

func (*WatchPlayerPunishmentsResponse) Validate

func (m *WatchPlayerPunishmentsResponse) Validate() error

Validate checks the field values on WatchPlayerPunishmentsResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchPlayerPunishmentsResponseValidationError

type WatchPlayerPunishmentsResponseValidationError struct {
	// contains filtered or unexported fields
}

WatchPlayerPunishmentsResponseValidationError is the validation error returned by WatchPlayerPunishmentsResponse.Validate if the designated constraints aren't met.

func (WatchPlayerPunishmentsResponseValidationError) Cause

Cause function returns cause value.

func (WatchPlayerPunishmentsResponseValidationError) Error

Error satisfies the builtin error interface

func (WatchPlayerPunishmentsResponseValidationError) ErrorName

ErrorName returns error name.

func (WatchPlayerPunishmentsResponseValidationError) Field

Field function returns field value.

func (WatchPlayerPunishmentsResponseValidationError) Key

Key function returns key value.

func (WatchPlayerPunishmentsResponseValidationError) Reason

Reason function returns reason value.

type WatchPunishmentsRequest

type WatchPunishmentsRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchPunishments`.

func (*WatchPunishmentsRequest) Descriptor deprecated

func (*WatchPunishmentsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchPunishmentsRequest.ProtoReflect.Descriptor instead.

func (*WatchPunishmentsRequest) ProtoMessage

func (*WatchPunishmentsRequest) ProtoMessage()

func (*WatchPunishmentsRequest) ProtoReflect added in v0.8.4

func (x *WatchPunishmentsRequest) ProtoReflect() protoreflect.Message

func (*WatchPunishmentsRequest) Reset

func (x *WatchPunishmentsRequest) Reset()

func (*WatchPunishmentsRequest) String

func (x *WatchPunishmentsRequest) String() string

func (*WatchPunishmentsRequest) Validate

func (m *WatchPunishmentsRequest) Validate() error

Validate checks the field values on WatchPunishmentsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchPunishmentsRequestValidationError

type WatchPunishmentsRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchPunishmentsRequestValidationError is the validation error returned by WatchPunishmentsRequest.Validate if the designated constraints aren't met.

func (WatchPunishmentsRequestValidationError) Cause

Cause function returns cause value.

func (WatchPunishmentsRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchPunishmentsRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchPunishmentsRequestValidationError) Field

Field function returns field value.

func (WatchPunishmentsRequestValidationError) Key

Key function returns key value.

func (WatchPunishmentsRequestValidationError) Reason

Reason function returns reason value.

type WatchPunishmentsResponse

type WatchPunishmentsResponse struct {
	Type         PunishmentType `protobuf:"varint,1,opt,name=type,proto3,enum=mruv.punishments.PunishmentType" json:"type,omitempty"`
	PunishmentId uint32         `protobuf:"varint,2,opt,name=punishment_id,json=punishmentId,proto3" json:"punishment_id,omitempty"`
	Player       uint32         `protobuf:"varint,3,opt,name=player,proto3" json:"player,omitempty"`
	Character    uint32         `protobuf:"varint,4,opt,name=character,proto3" json:"character,omitempty"`
	// contains filtered or unexported fields
}

Response message for rpc `WatchPunishments`.

func (*WatchPunishmentsResponse) Descriptor deprecated

func (*WatchPunishmentsResponse) Descriptor() ([]byte, []int)

Deprecated: Use WatchPunishmentsResponse.ProtoReflect.Descriptor instead.

func (*WatchPunishmentsResponse) GetCharacter

func (x *WatchPunishmentsResponse) GetCharacter() uint32

func (*WatchPunishmentsResponse) GetPlayer

func (x *WatchPunishmentsResponse) GetPlayer() uint32

func (*WatchPunishmentsResponse) GetPunishmentId

func (x *WatchPunishmentsResponse) GetPunishmentId() uint32

func (*WatchPunishmentsResponse) GetType

func (*WatchPunishmentsResponse) ProtoMessage

func (*WatchPunishmentsResponse) ProtoMessage()

func (*WatchPunishmentsResponse) ProtoReflect added in v0.8.4

func (x *WatchPunishmentsResponse) ProtoReflect() protoreflect.Message

func (*WatchPunishmentsResponse) Reset

func (x *WatchPunishmentsResponse) Reset()

func (*WatchPunishmentsResponse) String

func (x *WatchPunishmentsResponse) String() string

func (*WatchPunishmentsResponse) Validate

func (m *WatchPunishmentsResponse) Validate() error

Validate checks the field values on WatchPunishmentsResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchPunishmentsResponseValidationError

type WatchPunishmentsResponseValidationError struct {
	// contains filtered or unexported fields
}

WatchPunishmentsResponseValidationError is the validation error returned by WatchPunishmentsResponse.Validate if the designated constraints aren't met.

func (WatchPunishmentsResponseValidationError) Cause

Cause function returns cause value.

func (WatchPunishmentsResponseValidationError) Error

Error satisfies the builtin error interface

func (WatchPunishmentsResponseValidationError) ErrorName

ErrorName returns error name.

func (WatchPunishmentsResponseValidationError) Field

Field function returns field value.

func (WatchPunishmentsResponseValidationError) Key

Key function returns key value.

func (WatchPunishmentsResponseValidationError) Reason

Reason function returns reason value.

type WatchUnAdminJailsRequest

type WatchUnAdminJailsRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchUnAdminJails`.

func (*WatchUnAdminJailsRequest) Descriptor deprecated

func (*WatchUnAdminJailsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchUnAdminJailsRequest.ProtoReflect.Descriptor instead.

func (*WatchUnAdminJailsRequest) ProtoMessage

func (*WatchUnAdminJailsRequest) ProtoMessage()

func (*WatchUnAdminJailsRequest) ProtoReflect added in v0.8.4

func (x *WatchUnAdminJailsRequest) ProtoReflect() protoreflect.Message

func (*WatchUnAdminJailsRequest) Reset

func (x *WatchUnAdminJailsRequest) Reset()

func (*WatchUnAdminJailsRequest) String

func (x *WatchUnAdminJailsRequest) String() string

func (*WatchUnAdminJailsRequest) Validate

func (m *WatchUnAdminJailsRequest) Validate() error

Validate checks the field values on WatchUnAdminJailsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchUnAdminJailsRequestValidationError

type WatchUnAdminJailsRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchUnAdminJailsRequestValidationError is the validation error returned by WatchUnAdminJailsRequest.Validate if the designated constraints aren't met.

func (WatchUnAdminJailsRequestValidationError) Cause

Cause function returns cause value.

func (WatchUnAdminJailsRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchUnAdminJailsRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchUnAdminJailsRequestValidationError) Field

Field function returns field value.

func (WatchUnAdminJailsRequestValidationError) Key

Key function returns key value.

func (WatchUnAdminJailsRequestValidationError) Reason

Reason function returns reason value.

type WatchUnBansRequest

type WatchUnBansRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchUnBans`.

func (*WatchUnBansRequest) Descriptor deprecated

func (*WatchUnBansRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchUnBansRequest.ProtoReflect.Descriptor instead.

func (*WatchUnBansRequest) ProtoMessage

func (*WatchUnBansRequest) ProtoMessage()

func (*WatchUnBansRequest) ProtoReflect added in v0.8.4

func (x *WatchUnBansRequest) ProtoReflect() protoreflect.Message

func (*WatchUnBansRequest) Reset

func (x *WatchUnBansRequest) Reset()

func (*WatchUnBansRequest) String

func (x *WatchUnBansRequest) String() string

func (*WatchUnBansRequest) Validate

func (m *WatchUnBansRequest) Validate() error

Validate checks the field values on WatchUnBansRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchUnBansRequestValidationError

type WatchUnBansRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchUnBansRequestValidationError is the validation error returned by WatchUnBansRequest.Validate if the designated constraints aren't met.

func (WatchUnBansRequestValidationError) Cause

Cause function returns cause value.

func (WatchUnBansRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchUnBansRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchUnBansRequestValidationError) Field

Field function returns field value.

func (WatchUnBansRequestValidationError) Key

Key function returns key value.

func (WatchUnBansRequestValidationError) Reason

Reason function returns reason value.

type WatchUnBlocksRequest

type WatchUnBlocksRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchUnBlocks`.

func (*WatchUnBlocksRequest) Descriptor deprecated

func (*WatchUnBlocksRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchUnBlocksRequest.ProtoReflect.Descriptor instead.

func (*WatchUnBlocksRequest) ProtoMessage

func (*WatchUnBlocksRequest) ProtoMessage()

func (*WatchUnBlocksRequest) ProtoReflect added in v0.8.4

func (x *WatchUnBlocksRequest) ProtoReflect() protoreflect.Message

func (*WatchUnBlocksRequest) Reset

func (x *WatchUnBlocksRequest) Reset()

func (*WatchUnBlocksRequest) String

func (x *WatchUnBlocksRequest) String() string

func (*WatchUnBlocksRequest) Validate

func (m *WatchUnBlocksRequest) Validate() error

Validate checks the field values on WatchUnBlocksRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchUnBlocksRequestValidationError

type WatchUnBlocksRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchUnBlocksRequestValidationError is the validation error returned by WatchUnBlocksRequest.Validate if the designated constraints aren't met.

func (WatchUnBlocksRequestValidationError) Cause

Cause function returns cause value.

func (WatchUnBlocksRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchUnBlocksRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchUnBlocksRequestValidationError) Field

Field function returns field value.

func (WatchUnBlocksRequestValidationError) Key

Key function returns key value.

func (WatchUnBlocksRequestValidationError) Reason

Reason function returns reason value.

type WatchUnWarnsRequest

type WatchUnWarnsRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchUnWarns`.

func (*WatchUnWarnsRequest) Descriptor deprecated

func (*WatchUnWarnsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchUnWarnsRequest.ProtoReflect.Descriptor instead.

func (*WatchUnWarnsRequest) ProtoMessage

func (*WatchUnWarnsRequest) ProtoMessage()

func (*WatchUnWarnsRequest) ProtoReflect added in v0.8.4

func (x *WatchUnWarnsRequest) ProtoReflect() protoreflect.Message

func (*WatchUnWarnsRequest) Reset

func (x *WatchUnWarnsRequest) Reset()

func (*WatchUnWarnsRequest) String

func (x *WatchUnWarnsRequest) String() string

func (*WatchUnWarnsRequest) Validate

func (m *WatchUnWarnsRequest) Validate() error

Validate checks the field values on WatchUnWarnsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchUnWarnsRequestValidationError

type WatchUnWarnsRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchUnWarnsRequestValidationError is the validation error returned by WatchUnWarnsRequest.Validate if the designated constraints aren't met.

func (WatchUnWarnsRequestValidationError) Cause

Cause function returns cause value.

func (WatchUnWarnsRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchUnWarnsRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchUnWarnsRequestValidationError) Field

Field function returns field value.

func (WatchUnWarnsRequestValidationError) Key

Key function returns key value.

func (WatchUnWarnsRequestValidationError) Reason

Reason function returns reason value.

type WatchWarnsRequest

type WatchWarnsRequest struct {
	// contains filtered or unexported fields
}

Request message for rpc `WatchWarns`.

func (*WatchWarnsRequest) Descriptor deprecated

func (*WatchWarnsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WatchWarnsRequest.ProtoReflect.Descriptor instead.

func (*WatchWarnsRequest) ProtoMessage

func (*WatchWarnsRequest) ProtoMessage()

func (*WatchWarnsRequest) ProtoReflect added in v0.8.4

func (x *WatchWarnsRequest) ProtoReflect() protoreflect.Message

func (*WatchWarnsRequest) Reset

func (x *WatchWarnsRequest) Reset()

func (*WatchWarnsRequest) String

func (x *WatchWarnsRequest) String() string

func (*WatchWarnsRequest) Validate

func (m *WatchWarnsRequest) Validate() error

Validate checks the field values on WatchWarnsRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WatchWarnsRequestValidationError

type WatchWarnsRequestValidationError struct {
	// contains filtered or unexported fields
}

WatchWarnsRequestValidationError is the validation error returned by WatchWarnsRequest.Validate if the designated constraints aren't met.

func (WatchWarnsRequestValidationError) Cause

Cause function returns cause value.

func (WatchWarnsRequestValidationError) Error

Error satisfies the builtin error interface

func (WatchWarnsRequestValidationError) ErrorName

ErrorName returns error name.

func (WatchWarnsRequestValidationError) Field

Field function returns field value.

func (WatchWarnsRequestValidationError) Key

Key function returns key value.

func (WatchWarnsRequestValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL