basepb

package
v0.0.0-...-c735510 Latest Latest
Warning

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

Go to latest
Published: Feb 13, 2025 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	BaseTypeCondition_name = map[int32]string{
		0: "TYPE_CONDITION",
	}
	BaseTypeCondition_value = map[string]int32{
		"TYPE_CONDITION": 0,
	}
)

Enum value maps for BaseTypeCondition.

View Source
var (
	BaseTypeOr_name = map[int32]string{
		0: "TYPE_OR",
	}
	BaseTypeOr_value = map[string]int32{
		"TYPE_OR": 0,
	}
)

Enum value maps for BaseTypeOr.

View Source
var File_basepb_main_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type BaseCondition

type BaseCondition struct {
	Type     BaseTypeCondition `protobuf:"varint,1,opt,name=type,proto3,enum=basepb.BaseTypeCondition" json:"type,omitempty"`
	Property *BaseProperty     `protobuf:"bytes,2,opt,name=property,proto3" json:"property,omitempty"`
	// Types that are assignable to Operator:
	//
	//	*BaseCondition_IsEqualTo
	//	*BaseCondition_IsDifferentTo
	//	*BaseCondition_Contains
	//	*BaseCondition_DoesNotContain
	//	*BaseCondition_IsIn
	//	*BaseCondition_IsNotIn
	//	*BaseCondition_IsNull
	//	*BaseCondition_IsNotNull
	//	*BaseCondition_IsGreaterThan
	//	*BaseCondition_IsGreaterThanOrEqualTo
	//	*BaseCondition_IsLessThan
	//	*BaseCondition_IsLessThanOrEqualTo
	Operator isBaseCondition_Operator `protobuf_oneof:"operator"`
	// contains filtered or unexported fields
}

func (*BaseCondition) Descriptor deprecated

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

Deprecated: Use BaseCondition.ProtoReflect.Descriptor instead.

func (*BaseCondition) GetContains

func (x *BaseCondition) GetContains() *Contains

func (*BaseCondition) GetDoesNotContain

func (x *BaseCondition) GetDoesNotContain() *DoesNotContain

func (*BaseCondition) GetIsDifferentTo

func (x *BaseCondition) GetIsDifferentTo() *IsDifferentTo

func (*BaseCondition) GetIsEqualTo

func (x *BaseCondition) GetIsEqualTo() *IsEqualTo

func (*BaseCondition) GetIsGreaterThan

func (x *BaseCondition) GetIsGreaterThan() *IsGreaterThan

func (*BaseCondition) GetIsGreaterThanOrEqualTo

func (x *BaseCondition) GetIsGreaterThanOrEqualTo() *IsGreaterThanOrEqualTo

func (*BaseCondition) GetIsIn

func (x *BaseCondition) GetIsIn() *IsIn

func (*BaseCondition) GetIsLessThan

func (x *BaseCondition) GetIsLessThan() *IsLessThan

func (*BaseCondition) GetIsLessThanOrEqualTo

func (x *BaseCondition) GetIsLessThanOrEqualTo() *IsLessThanOrEqualTo

func (*BaseCondition) GetIsNotIn

func (x *BaseCondition) GetIsNotIn() *IsNotIn

func (*BaseCondition) GetIsNotNull

func (x *BaseCondition) GetIsNotNull() *IsNotNull

func (*BaseCondition) GetIsNull

func (x *BaseCondition) GetIsNull() *IsNull

func (*BaseCondition) GetOperator

func (m *BaseCondition) GetOperator() isBaseCondition_Operator

func (*BaseCondition) GetProperty

func (x *BaseCondition) GetProperty() *BaseProperty

func (*BaseCondition) GetType

func (x *BaseCondition) GetType() BaseTypeCondition

func (*BaseCondition) ProtoMessage

func (*BaseCondition) ProtoMessage()

func (*BaseCondition) ProtoReflect

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

func (*BaseCondition) Reset

func (x *BaseCondition) Reset()

func (*BaseCondition) String

func (x *BaseCondition) String() string

type BaseCondition_Contains

type BaseCondition_Contains struct {
	Contains *Contains `protobuf:"bytes,5,opt,name=contains,proto3,oneof"`
}

type BaseCondition_DoesNotContain

type BaseCondition_DoesNotContain struct {
	DoesNotContain *DoesNotContain `protobuf:"bytes,6,opt,name=does_not_contain,json=doesNotContain,proto3,oneof"`
}

type BaseCondition_IsDifferentTo

type BaseCondition_IsDifferentTo struct {
	IsDifferentTo *IsDifferentTo `protobuf:"bytes,4,opt,name=is_different_to,json=isDifferentTo,proto3,oneof"`
}

type BaseCondition_IsEqualTo

type BaseCondition_IsEqualTo struct {
	IsEqualTo *IsEqualTo `protobuf:"bytes,3,opt,name=is_equal_to,json=isEqualTo,proto3,oneof"`
}

type BaseCondition_IsGreaterThan

type BaseCondition_IsGreaterThan struct {
	IsGreaterThan *IsGreaterThan `protobuf:"bytes,11,opt,name=is_greater_than,json=isGreaterThan,proto3,oneof"`
}

type BaseCondition_IsGreaterThanOrEqualTo

type BaseCondition_IsGreaterThanOrEqualTo struct {
	IsGreaterThanOrEqualTo *IsGreaterThanOrEqualTo `protobuf:"bytes,12,opt,name=is_greater_than_or_equal_to,json=isGreaterThanOrEqualTo,proto3,oneof"`
}

type BaseCondition_IsIn

type BaseCondition_IsIn struct {
	IsIn *IsIn `protobuf:"bytes,7,opt,name=is_in,json=isIn,proto3,oneof"`
}

type BaseCondition_IsLessThan

type BaseCondition_IsLessThan struct {
	IsLessThan *IsLessThan `protobuf:"bytes,13,opt,name=is_less_than,json=isLessThan,proto3,oneof"`
}

type BaseCondition_IsLessThanOrEqualTo

type BaseCondition_IsLessThanOrEqualTo struct {
	IsLessThanOrEqualTo *IsLessThanOrEqualTo `protobuf:"bytes,14,opt,name=is_less_than_or_equal_to,json=isLessThanOrEqualTo,proto3,oneof"`
}

type BaseCondition_IsNotIn

type BaseCondition_IsNotIn struct {
	IsNotIn *IsNotIn `protobuf:"bytes,8,opt,name=is_not_in,json=isNotIn,proto3,oneof"`
}

type BaseCondition_IsNotNull

type BaseCondition_IsNotNull struct {
	IsNotNull *IsNotNull `protobuf:"bytes,10,opt,name=is_not_null,json=isNotNull,proto3,oneof"`
}

type BaseCondition_IsNull

type BaseCondition_IsNull struct {
	IsNull *IsNull `protobuf:"bytes,9,opt,name=is_null,json=isNull,proto3,oneof"`
}

type BaseFilter

type BaseFilter struct {

	// Types that are assignable to Filter:
	//
	//	*BaseFilter_Condition
	//	*BaseFilter_Or
	Filter isBaseFilter_Filter `protobuf_oneof:"filter"`
	// contains filtered or unexported fields
}

func (*BaseFilter) Descriptor deprecated

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

Deprecated: Use BaseFilter.ProtoReflect.Descriptor instead.

func (*BaseFilter) GetCondition

func (x *BaseFilter) GetCondition() *BaseCondition

func (*BaseFilter) GetFilter

func (m *BaseFilter) GetFilter() isBaseFilter_Filter

func (*BaseFilter) GetOr

func (x *BaseFilter) GetOr() *BaseOR

func (*BaseFilter) ProtoMessage

func (*BaseFilter) ProtoMessage()

func (*BaseFilter) ProtoReflect

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

func (*BaseFilter) Reset

func (x *BaseFilter) Reset()

func (*BaseFilter) String

func (x *BaseFilter) String() string

type BaseFilter_Condition

type BaseFilter_Condition struct {
	Condition *BaseCondition `protobuf:"bytes,1,opt,name=condition,proto3,oneof"`
}

type BaseFilter_Or

type BaseFilter_Or struct {
	Or *BaseOR `protobuf:"bytes,3,opt,name=or,proto3,oneof"`
}

type BaseOR

type BaseOR struct {
	Type    BaseTypeOr    `protobuf:"varint,1,opt,name=type,proto3,enum=basepb.BaseTypeOr" json:"type,omitempty"`
	Filters []*BaseFilter `protobuf:"bytes,2,rep,name=filters,proto3" json:"filters,omitempty"`
	// contains filtered or unexported fields
}

func (*BaseOR) Descriptor deprecated

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

Deprecated: Use BaseOR.ProtoReflect.Descriptor instead.

func (*BaseOR) GetFilters

func (x *BaseOR) GetFilters() []*BaseFilter

func (*BaseOR) GetType

func (x *BaseOR) GetType() BaseTypeOr

func (*BaseOR) ProtoMessage

func (*BaseOR) ProtoMessage()

func (*BaseOR) ProtoReflect

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

func (*BaseOR) Reset

func (x *BaseOR) Reset()

func (*BaseOR) String

func (x *BaseOR) String() string

type BaseProperty

type BaseProperty struct {
	Snake string `protobuf:"bytes,1,opt,name=snake,proto3" json:"snake,omitempty"`
	// contains filtered or unexported fields
}

func (*BaseProperty) Descriptor deprecated

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

Deprecated: Use BaseProperty.ProtoReflect.Descriptor instead.

func (*BaseProperty) GetSnake

func (x *BaseProperty) GetSnake() string

func (*BaseProperty) ProtoMessage

func (*BaseProperty) ProtoMessage()

func (*BaseProperty) ProtoReflect

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

func (*BaseProperty) Reset

func (x *BaseProperty) Reset()

func (*BaseProperty) String

func (x *BaseProperty) String() string

type BaseTypeCondition

type BaseTypeCondition int32
const (
	BaseTypeCondition_TYPE_CONDITION BaseTypeCondition = 0
)

func (BaseTypeCondition) Descriptor

func (BaseTypeCondition) Enum

func (BaseTypeCondition) EnumDescriptor deprecated

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

Deprecated: Use BaseTypeCondition.Descriptor instead.

func (BaseTypeCondition) Number

func (BaseTypeCondition) String

func (x BaseTypeCondition) String() string

func (BaseTypeCondition) Type

type BaseTypeOr

type BaseTypeOr int32
const (
	BaseTypeOr_TYPE_OR BaseTypeOr = 0
)

func (BaseTypeOr) Descriptor

func (BaseTypeOr) Descriptor() protoreflect.EnumDescriptor

func (BaseTypeOr) Enum

func (x BaseTypeOr) Enum() *BaseTypeOr

func (BaseTypeOr) EnumDescriptor deprecated

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

Deprecated: Use BaseTypeOr.Descriptor instead.

func (BaseTypeOr) Number

func (x BaseTypeOr) Number() protoreflect.EnumNumber

func (BaseTypeOr) String

func (x BaseTypeOr) String() string

func (BaseTypeOr) Type

type Contains

type Contains struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Contains) Descriptor deprecated

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

Deprecated: Use Contains.ProtoReflect.Descriptor instead.

func (*Contains) GetValue

func (x *Contains) GetValue() string

func (*Contains) ProtoMessage

func (*Contains) ProtoMessage()

func (*Contains) ProtoReflect

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

func (*Contains) Reset

func (x *Contains) Reset()

func (*Contains) String

func (x *Contains) String() string

type DoesNotContain

type DoesNotContain struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*DoesNotContain) Descriptor deprecated

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

Deprecated: Use DoesNotContain.ProtoReflect.Descriptor instead.

func (*DoesNotContain) GetValue

func (x *DoesNotContain) GetValue() string

func (*DoesNotContain) ProtoMessage

func (*DoesNotContain) ProtoMessage()

func (*DoesNotContain) ProtoReflect

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

func (*DoesNotContain) Reset

func (x *DoesNotContain) Reset()

func (*DoesNotContain) String

func (x *DoesNotContain) String() string

type GetByExternalIDQuery

type GetByExternalIDQuery struct {
	TenantID string `protobuf:"bytes,1,opt,name=tenantID,proto3" json:"tenantID,omitempty"`
	Lang     string `protobuf:"bytes,2,opt,name=lang,proto3" json:"lang,omitempty"`
	Module   string `protobuf:"bytes,3,opt,name=module,proto3" json:"module,omitempty"`
	ID       string `protobuf:"bytes,4,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*GetByExternalIDQuery) Descriptor deprecated

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

Deprecated: Use GetByExternalIDQuery.ProtoReflect.Descriptor instead.

func (*GetByExternalIDQuery) GetID

func (x *GetByExternalIDQuery) GetID() string

func (*GetByExternalIDQuery) GetLang

func (x *GetByExternalIDQuery) GetLang() string

func (*GetByExternalIDQuery) GetModule

func (x *GetByExternalIDQuery) GetModule() string

func (*GetByExternalIDQuery) GetTenantID

func (x *GetByExternalIDQuery) GetTenantID() string

func (*GetByExternalIDQuery) ProtoMessage

func (*GetByExternalIDQuery) ProtoMessage()

func (*GetByExternalIDQuery) ProtoReflect

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

func (*GetByExternalIDQuery) Reset

func (x *GetByExternalIDQuery) Reset()

func (*GetByExternalIDQuery) String

func (x *GetByExternalIDQuery) String() string

type GetQuery

type GetQuery struct {
	TenantID string `protobuf:"bytes,1,opt,name=tenantID,proto3" json:"tenantID,omitempty"`
	Lang     string `protobuf:"bytes,2,opt,name=lang,proto3" json:"lang,omitempty"`
	ID       string `protobuf:"bytes,3,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQuery) Descriptor deprecated

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

Deprecated: Use GetQuery.ProtoReflect.Descriptor instead.

func (*GetQuery) GetID

func (x *GetQuery) GetID() string

func (*GetQuery) GetLang

func (x *GetQuery) GetLang() string

func (*GetQuery) GetTenantID

func (x *GetQuery) GetTenantID() string

func (*GetQuery) ProtoMessage

func (*GetQuery) ProtoMessage()

func (*GetQuery) ProtoReflect

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

func (*GetQuery) Reset

func (x *GetQuery) Reset()

func (*GetQuery) String

func (x *GetQuery) String() string

type IsDifferentTo

type IsDifferentTo struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*IsDifferentTo) Descriptor deprecated

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

Deprecated: Use IsDifferentTo.ProtoReflect.Descriptor instead.

func (*IsDifferentTo) GetValue

func (x *IsDifferentTo) GetValue() string

func (*IsDifferentTo) ProtoMessage

func (*IsDifferentTo) ProtoMessage()

func (*IsDifferentTo) ProtoReflect

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

func (*IsDifferentTo) Reset

func (x *IsDifferentTo) Reset()

func (*IsDifferentTo) String

func (x *IsDifferentTo) String() string

type IsEqualTo

type IsEqualTo struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*IsEqualTo) Descriptor deprecated

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

Deprecated: Use IsEqualTo.ProtoReflect.Descriptor instead.

func (*IsEqualTo) GetValue

func (x *IsEqualTo) GetValue() string

func (*IsEqualTo) ProtoMessage

func (*IsEqualTo) ProtoMessage()

func (*IsEqualTo) ProtoReflect

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

func (*IsEqualTo) Reset

func (x *IsEqualTo) Reset()

func (*IsEqualTo) String

func (x *IsEqualTo) String() string

type IsGreaterThan

type IsGreaterThan struct {
	Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*IsGreaterThan) Descriptor deprecated

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

Deprecated: Use IsGreaterThan.ProtoReflect.Descriptor instead.

func (*IsGreaterThan) GetValue

func (x *IsGreaterThan) GetValue() float32

func (*IsGreaterThan) ProtoMessage

func (*IsGreaterThan) ProtoMessage()

func (*IsGreaterThan) ProtoReflect

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

func (*IsGreaterThan) Reset

func (x *IsGreaterThan) Reset()

func (*IsGreaterThan) String

func (x *IsGreaterThan) String() string

type IsGreaterThanOrEqualTo

type IsGreaterThanOrEqualTo struct {
	Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*IsGreaterThanOrEqualTo) Descriptor deprecated

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

Deprecated: Use IsGreaterThanOrEqualTo.ProtoReflect.Descriptor instead.

func (*IsGreaterThanOrEqualTo) GetValue

func (x *IsGreaterThanOrEqualTo) GetValue() float32

func (*IsGreaterThanOrEqualTo) ProtoMessage

func (*IsGreaterThanOrEqualTo) ProtoMessage()

func (*IsGreaterThanOrEqualTo) ProtoReflect

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

func (*IsGreaterThanOrEqualTo) Reset

func (x *IsGreaterThanOrEqualTo) Reset()

func (*IsGreaterThanOrEqualTo) String

func (x *IsGreaterThanOrEqualTo) String() string

type IsIn

type IsIn struct {
	Values []string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*IsIn) Descriptor deprecated

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

Deprecated: Use IsIn.ProtoReflect.Descriptor instead.

func (*IsIn) GetValues

func (x *IsIn) GetValues() []string

func (*IsIn) ProtoMessage

func (*IsIn) ProtoMessage()

func (*IsIn) ProtoReflect

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

func (*IsIn) Reset

func (x *IsIn) Reset()

func (*IsIn) String

func (x *IsIn) String() string

type IsLessThan

type IsLessThan struct {
	Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*IsLessThan) Descriptor deprecated

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

Deprecated: Use IsLessThan.ProtoReflect.Descriptor instead.

func (*IsLessThan) GetValue

func (x *IsLessThan) GetValue() float32

func (*IsLessThan) ProtoMessage

func (*IsLessThan) ProtoMessage()

func (*IsLessThan) ProtoReflect

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

func (*IsLessThan) Reset

func (x *IsLessThan) Reset()

func (*IsLessThan) String

func (x *IsLessThan) String() string

type IsLessThanOrEqualTo

type IsLessThanOrEqualTo struct {
	Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*IsLessThanOrEqualTo) Descriptor deprecated

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

Deprecated: Use IsLessThanOrEqualTo.ProtoReflect.Descriptor instead.

func (*IsLessThanOrEqualTo) GetValue

func (x *IsLessThanOrEqualTo) GetValue() float32

func (*IsLessThanOrEqualTo) ProtoMessage

func (*IsLessThanOrEqualTo) ProtoMessage()

func (*IsLessThanOrEqualTo) ProtoReflect

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

func (*IsLessThanOrEqualTo) Reset

func (x *IsLessThanOrEqualTo) Reset()

func (*IsLessThanOrEqualTo) String

func (x *IsLessThanOrEqualTo) String() string

type IsNotIn

type IsNotIn struct {
	Values []string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*IsNotIn) Descriptor deprecated

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

Deprecated: Use IsNotIn.ProtoReflect.Descriptor instead.

func (*IsNotIn) GetValues

func (x *IsNotIn) GetValues() []string

func (*IsNotIn) ProtoMessage

func (*IsNotIn) ProtoMessage()

func (*IsNotIn) ProtoReflect

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

func (*IsNotIn) Reset

func (x *IsNotIn) Reset()

func (*IsNotIn) String

func (x *IsNotIn) String() string

type IsNotNull

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

func (*IsNotNull) Descriptor deprecated

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

Deprecated: Use IsNotNull.ProtoReflect.Descriptor instead.

func (*IsNotNull) ProtoMessage

func (*IsNotNull) ProtoMessage()

func (*IsNotNull) ProtoReflect

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

func (*IsNotNull) Reset

func (x *IsNotNull) Reset()

func (*IsNotNull) String

func (x *IsNotNull) String() string

type IsNull

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

func (*IsNull) Descriptor deprecated

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

Deprecated: Use IsNull.ProtoReflect.Descriptor instead.

func (*IsNull) ProtoMessage

func (*IsNull) ProtoMessage()

func (*IsNull) ProtoReflect

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

func (*IsNull) Reset

func (x *IsNull) Reset()

func (*IsNull) String

func (x *IsNull) String() string

type OptionsListQuery

type OptionsListQuery struct {
	Lang    string `protobuf:"bytes,2,opt,name=lang,proto3" json:"lang,omitempty"`
	Offset  int32  `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Limit   int32  `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
	OrderBy string `protobuf:"bytes,5,opt,name=orderBy,proto3" json:"orderBy,omitempty"`
	// string after = 5;
	// string before = 6;
	// int32 first = 7;
	// int32 last = 8;
	GlobalIgnoreTenants bool `protobuf:"varint,10,opt,name=globalIgnoreTenants,proto3" json:"globalIgnoreTenants,omitempty"`
	// contains filtered or unexported fields
}

func (*OptionsListQuery) Descriptor deprecated

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

Deprecated: Use OptionsListQuery.ProtoReflect.Descriptor instead.

func (*OptionsListQuery) GetGlobalIgnoreTenants

func (x *OptionsListQuery) GetGlobalIgnoreTenants() bool

func (*OptionsListQuery) GetLang

func (x *OptionsListQuery) GetLang() string

func (*OptionsListQuery) GetLimit

func (x *OptionsListQuery) GetLimit() int32

func (*OptionsListQuery) GetOffset

func (x *OptionsListQuery) GetOffset() int32

func (*OptionsListQuery) GetOrderBy

func (x *OptionsListQuery) GetOrderBy() string

func (*OptionsListQuery) ProtoMessage

func (*OptionsListQuery) ProtoMessage()

func (*OptionsListQuery) ProtoReflect

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

func (*OptionsListQuery) Reset

func (x *OptionsListQuery) Reset()

func (*OptionsListQuery) String

func (x *OptionsListQuery) String() string

Jump to

Keyboard shortcuts

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