documentspb

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Nov 23, 2022 License: MIT Imports: 8 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Enum_name = map[int32]string{
		0: "type_one",
		1: "type_two",
	}
	Enum_value = map[string]int32{
		"type_one": 0,
		"type_two": 1,
	}
)

Enum value maps for Enum.

View Source
var ExampleContainSaltsDocument = ContainSalts{
	ValueA: "valueAValue",
	ValueB: 10,
	Salts:  []*proofspb.Salt{{Compact: []byte{0, 0, 0, 1}, Value: []byte{0x1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2}}, {Compact: []byte{0, 0, 0, 2}, Value: []byte{0x3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x4}}},
}
View Source
var ExampleFilledNestedRepeatedDocument = NestedRepeatedDocument{
	ValueA: "ValueAA",
	ValueB: "ValueBB",
	ValueC: []*SimpleItem{{ValueA: "ValueCA"}, {ValueA: "ValueCB"}},
	ValueD: &TwoLevelItem{ValueA: &SimpleItem{ValueA: "ValueDAA"}, ValueB: "ValueDB"},
}
View Source
var ExampleFilledRepeatedDocument = SimpleRepeatedDocument{
	ValueA: "ValueAA",
	ValueB: "ValueBB",
	ValueC: []string{"ValueCA", "ValueCB"},
}
View Source
var ExampleFilledTwoLevelRepeatedDocument = TwoLevelRepeatedDocument{
	ValueA: "ValueAA",
	ValueB: []*RepeatedItem{{ValueA: []*SimpleItem{{ValueA: "ValueBAAA"}, {ValueA: "ValueBAAB"}}, ValueB: "ValueBBA"}},
}
View Source
var ExampleOneofSampleDocument = OneofSample{
	ValueA:     2,
	OneofBlock: &OneofSample_ValueB{int32(1)},
	ValueE:     7,
}
View Source
var ExampleSimpleMapDocument = SimpleMapDocument{
	ValueA: "ValueAA",
	ValueB: "ValueBB",
	ValueC: map[string]string{
		"ValueCAKey": "ValueCAValue",
		"ValueCBKey": "ValueCBValue",
	},
	ValueD: map[int32]string{
		-1: "negative one",
		0:  "zero",
		1:  "one",
	},
}
View Source
var ExampleTimeString string = "2018-04-10T01:23:12.697116Z"
View Source
var File_examples_documents_example_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AllFieldTypes

type AllFieldTypes struct {
	StringValue    string                 `protobuf:"bytes,1,opt,name=string_value,json=stringValue,proto3" json:"string_value,omitempty"`
	TimeStampValue *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=time_stamp_value,json=timeStampValue,proto3" json:"time_stamp_value,omitempty"`
	Salts          []*proto.Salt          `protobuf:"bytes,3,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func NewAllFieldTypes

func NewAllFieldTypes() *AllFieldTypes

func (*AllFieldTypes) Descriptor deprecated

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

Deprecated: Use AllFieldTypes.ProtoReflect.Descriptor instead.

func (*AllFieldTypes) GetSalts

func (x *AllFieldTypes) GetSalts() []*proto.Salt

func (*AllFieldTypes) GetStringValue

func (x *AllFieldTypes) GetStringValue() string

func (*AllFieldTypes) GetTimeStampValue

func (x *AllFieldTypes) GetTimeStampValue() *timestamppb.Timestamp

func (*AllFieldTypes) ProtoMessage

func (*AllFieldTypes) ProtoMessage()

func (*AllFieldTypes) ProtoReflect added in v1.0.0

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

func (*AllFieldTypes) Reset

func (x *AllFieldTypes) Reset()

func (*AllFieldTypes) String

func (x *AllFieldTypes) String() string

type AllFieldTypesSalts

type AllFieldTypesSalts struct {
	StringValue    []byte        `protobuf:"bytes,1,opt,name=string_value,json=stringValue,proto3" json:"string_value,omitempty"`
	TimeStampValue []byte        `protobuf:"bytes,2,opt,name=time_stamp_value,json=timeStampValue,proto3" json:"time_stamp_value,omitempty"`
	Salts          []*proto.Salt `protobuf:"bytes,3,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*AllFieldTypesSalts) Descriptor deprecated

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

Deprecated: Use AllFieldTypesSalts.ProtoReflect.Descriptor instead.

func (*AllFieldTypesSalts) GetSalts

func (x *AllFieldTypesSalts) GetSalts() []*proto.Salt

func (*AllFieldTypesSalts) GetStringValue

func (x *AllFieldTypesSalts) GetStringValue() []byte

func (*AllFieldTypesSalts) GetTimeStampValue

func (x *AllFieldTypesSalts) GetTimeStampValue() []byte

func (*AllFieldTypesSalts) ProtoMessage

func (*AllFieldTypesSalts) ProtoMessage()

func (*AllFieldTypesSalts) ProtoReflect added in v1.0.0

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

func (*AllFieldTypesSalts) Reset

func (x *AllFieldTypesSalts) Reset()

func (*AllFieldTypesSalts) String

func (x *AllFieldTypesSalts) String() string

type AppendFieldDocument

type AppendFieldDocument struct {
	Name         *Name          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Names        []*Name        `protobuf:"bytes,2,rep,name=names,proto3" json:"names,omitempty"`
	PhoneNumbers []*PhoneNumber `protobuf:"bytes,3,rep,name=phone_numbers,json=phoneNumbers,proto3" json:"phone_numbers,omitempty"`
	// contains filtered or unexported fields
}

func (*AppendFieldDocument) Descriptor deprecated

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

Deprecated: Use AppendFieldDocument.ProtoReflect.Descriptor instead.

func (*AppendFieldDocument) GetName

func (x *AppendFieldDocument) GetName() *Name

func (*AppendFieldDocument) GetNames

func (x *AppendFieldDocument) GetNames() []*Name

func (*AppendFieldDocument) GetPhoneNumbers

func (x *AppendFieldDocument) GetPhoneNumbers() []*PhoneNumber

func (*AppendFieldDocument) ProtoMessage

func (*AppendFieldDocument) ProtoMessage()

func (*AppendFieldDocument) ProtoReflect added in v1.0.0

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

func (*AppendFieldDocument) Reset

func (x *AppendFieldDocument) Reset()

func (*AppendFieldDocument) String

func (x *AppendFieldDocument) String() string

type AppendFieldPaddingDocument

type AppendFieldPaddingDocument struct {
	Names []*NamePadded `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
	// contains filtered or unexported fields
}

func (*AppendFieldPaddingDocument) Descriptor deprecated

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

Deprecated: Use AppendFieldPaddingDocument.ProtoReflect.Descriptor instead.

func (*AppendFieldPaddingDocument) GetNames

func (x *AppendFieldPaddingDocument) GetNames() []*NamePadded

func (*AppendFieldPaddingDocument) ProtoMessage

func (*AppendFieldPaddingDocument) ProtoMessage()

func (*AppendFieldPaddingDocument) ProtoReflect added in v1.0.0

func (*AppendFieldPaddingDocument) Reset

func (x *AppendFieldPaddingDocument) Reset()

func (*AppendFieldPaddingDocument) String

func (x *AppendFieldPaddingDocument) String() string

type BytesKeyEntries

type BytesKeyEntries struct {
	Entries []*BytesKeyEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	Salts   []*proto.Salt    `protobuf:"bytes,2,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*BytesKeyEntries) Descriptor deprecated

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

Deprecated: Use BytesKeyEntries.ProtoReflect.Descriptor instead.

func (*BytesKeyEntries) GetEntries

func (x *BytesKeyEntries) GetEntries() []*BytesKeyEntry

func (*BytesKeyEntries) GetSalts

func (x *BytesKeyEntries) GetSalts() []*proto.Salt

func (*BytesKeyEntries) ProtoMessage

func (*BytesKeyEntries) ProtoMessage()

func (*BytesKeyEntries) ProtoReflect added in v1.0.0

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

func (*BytesKeyEntries) Reset

func (x *BytesKeyEntries) Reset()

func (*BytesKeyEntries) String

func (x *BytesKeyEntries) String() string

type BytesKeyEntry

type BytesKeyEntry struct {
	Address []byte `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Value   string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*BytesKeyEntry) Descriptor deprecated

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

Deprecated: Use BytesKeyEntry.ProtoReflect.Descriptor instead.

func (*BytesKeyEntry) GetAddress

func (x *BytesKeyEntry) GetAddress() []byte

func (*BytesKeyEntry) GetValue

func (x *BytesKeyEntry) GetValue() string

func (*BytesKeyEntry) ProtoMessage

func (*BytesKeyEntry) ProtoMessage()

func (*BytesKeyEntry) ProtoReflect added in v1.0.0

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

func (*BytesKeyEntry) Reset

func (x *BytesKeyEntry) Reset()

func (*BytesKeyEntry) String

func (x *BytesKeyEntry) String() string

type ContainSalts

type ContainSalts struct {
	ValueA string        `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB int32         `protobuf:"varint,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,3,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*ContainSalts) Descriptor deprecated

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

Deprecated: Use ContainSalts.ProtoReflect.Descriptor instead.

func (*ContainSalts) GetSalts

func (x *ContainSalts) GetSalts() []*proto.Salt

func (*ContainSalts) GetValueA

func (x *ContainSalts) GetValueA() string

func (*ContainSalts) GetValueB

func (x *ContainSalts) GetValueB() int32

func (*ContainSalts) ProtoMessage

func (*ContainSalts) ProtoMessage()

func (*ContainSalts) ProtoReflect added in v1.0.0

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

func (*ContainSalts) Reset

func (x *ContainSalts) Reset()

func (*ContainSalts) String

func (x *ContainSalts) String() string

type Entries

type Entries struct {
	Entries []*Entry      `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	Salts   []*proto.Salt `protobuf:"bytes,2,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*Entries) Descriptor deprecated

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

Deprecated: Use Entries.ProtoReflect.Descriptor instead.

func (*Entries) GetEntries

func (x *Entries) GetEntries() []*Entry

func (*Entries) GetSalts

func (x *Entries) GetSalts() []*proto.Salt

func (*Entries) ProtoMessage

func (*Entries) ProtoMessage()

func (*Entries) ProtoReflect added in v1.0.0

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

func (*Entries) Reset

func (x *Entries) Reset()

func (*Entries) String

func (x *Entries) String() string

type Entry

type Entry struct {
	EntryKey string `protobuf:"bytes,1,opt,name=entry_key,json=entryKey,proto3" json:"entry_key,omitempty"`
	ValueA   string `protobuf:"bytes,2,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB   []byte `protobuf:"bytes,3,opt,name=valueB,proto3" json:"valueB,omitempty"`
	ValueC   int64  `protobuf:"varint,4,opt,name=valueC,proto3" json:"valueC,omitempty"`
	// contains filtered or unexported fields
}

func (*Entry) Descriptor deprecated

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

Deprecated: Use Entry.ProtoReflect.Descriptor instead.

func (*Entry) GetEntryKey

func (x *Entry) GetEntryKey() string

func (*Entry) GetValueA

func (x *Entry) GetValueA() string

func (*Entry) GetValueB

func (x *Entry) GetValueB() []byte

func (*Entry) GetValueC

func (x *Entry) GetValueC() int64

func (*Entry) ProtoMessage

func (*Entry) ProtoMessage()

func (*Entry) ProtoReflect added in v1.0.0

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

func (*Entry) Reset

func (x *Entry) Reset()

func (*Entry) String

func (x *Entry) String() string

type Enum

type Enum int32
const (
	Enum_type_one Enum = 0
	Enum_type_two Enum = 1
)

func (Enum) Descriptor added in v1.0.0

func (Enum) Descriptor() protoreflect.EnumDescriptor

func (Enum) Enum added in v1.0.0

func (x Enum) Enum() *Enum

func (Enum) EnumDescriptor deprecated

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

Deprecated: Use Enum.Descriptor instead.

func (Enum) Number added in v1.0.0

func (x Enum) Number() protoreflect.EnumNumber

func (Enum) String

func (x Enum) String() string

func (Enum) Type added in v1.0.0

func (Enum) Type() protoreflect.EnumType

type ExampleDocument

type ExampleDocument struct {
	ValueA          string        `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB          string        `protobuf:"bytes,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	Value1          int64         `protobuf:"varint,3,opt,name=value1,proto3" json:"value1,omitempty"`
	Value2          int64         `protobuf:"varint,4,opt,name=value2,proto3" json:"value2,omitempty"`
	ValueBytes1     []byte        `protobuf:"bytes,5,opt,name=value_bytes1,json=valueBytes1,proto3" json:"value_bytes1,omitempty"`
	ValueCamelCased []byte        `protobuf:"bytes,6,opt,name=ValueCamelCased,proto3" json:"ValueCamelCased,omitempty"`
	ValueNotIgnored []byte        `protobuf:"bytes,7,opt,name=value_not_ignored,json=valueNotIgnored,proto3" json:"value_not_ignored,omitempty"`
	ValueIgnored    []byte        `protobuf:"bytes,8,opt,name=value_ignored,json=valueIgnored,proto3" json:"value_ignored,omitempty"`
	ValueNotHashed  []byte        `protobuf:"bytes,9,opt,name=value_not_hashed,json=valueNotHashed,proto3" json:"value_not_hashed,omitempty"`
	EnumType        Enum          `protobuf:"varint,10,opt,name=enum_type,json=enumType,proto3,enum=documents.Enum" json:"enum_type,omitempty"`
	ValueBool       bool          `protobuf:"varint,12,opt,name=valueBool,proto3" json:"valueBool,omitempty"`
	Name            *Name         `protobuf:"bytes,13,opt,name=name,proto3" json:"name,omitempty"`
	PaddingA        string        `protobuf:"bytes,14,opt,name=paddingA,proto3" json:"paddingA,omitempty"`
	PaddingB        []byte        `protobuf:"bytes,15,opt,name=paddingB,proto3" json:"paddingB,omitempty"`
	Salts           []*proto.Salt `protobuf:"bytes,11,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}
var FilledExampleDocument ExampleDocument = ExampleDocument{
	ValueA: "Example",
}

func (*ExampleDocument) Descriptor deprecated

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

Deprecated: Use ExampleDocument.ProtoReflect.Descriptor instead.

func (*ExampleDocument) GetEnumType

func (x *ExampleDocument) GetEnumType() Enum

func (*ExampleDocument) GetName

func (x *ExampleDocument) GetName() *Name

func (*ExampleDocument) GetPaddingA

func (x *ExampleDocument) GetPaddingA() string

func (*ExampleDocument) GetPaddingB

func (x *ExampleDocument) GetPaddingB() []byte

func (*ExampleDocument) GetSalts

func (x *ExampleDocument) GetSalts() []*proto.Salt

func (*ExampleDocument) GetValue1

func (x *ExampleDocument) GetValue1() int64

func (*ExampleDocument) GetValue2

func (x *ExampleDocument) GetValue2() int64

func (*ExampleDocument) GetValueA

func (x *ExampleDocument) GetValueA() string

func (*ExampleDocument) GetValueB

func (x *ExampleDocument) GetValueB() string

func (*ExampleDocument) GetValueBool

func (x *ExampleDocument) GetValueBool() bool

func (*ExampleDocument) GetValueBytes1

func (x *ExampleDocument) GetValueBytes1() []byte

func (*ExampleDocument) GetValueCamelCased

func (x *ExampleDocument) GetValueCamelCased() []byte

func (*ExampleDocument) GetValueIgnored

func (x *ExampleDocument) GetValueIgnored() []byte

func (*ExampleDocument) GetValueNotHashed

func (x *ExampleDocument) GetValueNotHashed() []byte

func (*ExampleDocument) GetValueNotIgnored

func (x *ExampleDocument) GetValueNotIgnored() []byte

func (*ExampleDocument) ProtoMessage

func (*ExampleDocument) ProtoMessage()

func (*ExampleDocument) ProtoReflect added in v1.0.0

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

func (*ExampleDocument) Reset

func (x *ExampleDocument) Reset()

func (*ExampleDocument) String

func (x *ExampleDocument) String() string

type ExampleNested

type ExampleNested struct {
	HashedValue []byte `protobuf:"bytes,1,opt,name=hashed_value,json=hashedValue,proto3" json:"hashed_value,omitempty"`
	Name        *Name  `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ExampleNested) Descriptor deprecated

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

Deprecated: Use ExampleNested.ProtoReflect.Descriptor instead.

func (*ExampleNested) GetHashedValue

func (x *ExampleNested) GetHashedValue() []byte

func (*ExampleNested) GetName

func (x *ExampleNested) GetName() *Name

func (*ExampleNested) ProtoMessage

func (*ExampleNested) ProtoMessage()

func (*ExampleNested) ProtoReflect added in v1.0.0

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

func (*ExampleNested) Reset

func (x *ExampleNested) Reset()

func (*ExampleNested) String

func (x *ExampleNested) String() string

type ExampleWithPaddingField

type ExampleWithPaddingField struct {
	ValueA string        `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB []byte        `protobuf:"bytes,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,3,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*ExampleWithPaddingField) Descriptor deprecated

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

Deprecated: Use ExampleWithPaddingField.ProtoReflect.Descriptor instead.

func (*ExampleWithPaddingField) GetSalts

func (x *ExampleWithPaddingField) GetSalts() []*proto.Salt

func (*ExampleWithPaddingField) GetValueA

func (x *ExampleWithPaddingField) GetValueA() string

func (*ExampleWithPaddingField) GetValueB

func (x *ExampleWithPaddingField) GetValueB() []byte

func (*ExampleWithPaddingField) ProtoMessage

func (*ExampleWithPaddingField) ProtoMessage()

func (*ExampleWithPaddingField) ProtoReflect added in v1.0.0

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

func (*ExampleWithPaddingField) Reset

func (x *ExampleWithPaddingField) Reset()

func (*ExampleWithPaddingField) String

func (x *ExampleWithPaddingField) String() string

type ExampleWithoutSalts

type ExampleWithoutSalts struct {
	ValueA string `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB int32  `protobuf:"varint,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	// contains filtered or unexported fields
}

func (*ExampleWithoutSalts) Descriptor deprecated

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

Deprecated: Use ExampleWithoutSalts.ProtoReflect.Descriptor instead.

func (*ExampleWithoutSalts) GetValueA

func (x *ExampleWithoutSalts) GetValueA() string

func (*ExampleWithoutSalts) GetValueB

func (x *ExampleWithoutSalts) GetValueB() int32

func (*ExampleWithoutSalts) ProtoMessage

func (*ExampleWithoutSalts) ProtoMessage()

func (*ExampleWithoutSalts) ProtoReflect added in v1.0.0

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

func (*ExampleWithoutSalts) Reset

func (x *ExampleWithoutSalts) Reset()

func (*ExampleWithoutSalts) String

func (x *ExampleWithoutSalts) String() string

type Integers

type Integers struct {
	ValueA int32         `protobuf:"varint,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB int64         `protobuf:"varint,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	ValueC uint32        `protobuf:"varint,3,opt,name=valueC,proto3" json:"valueC,omitempty"`
	ValueD uint64        `protobuf:"varint,4,opt,name=valueD,proto3" json:"valueD,omitempty"`
	ValueE int32         `protobuf:"zigzag32,5,opt,name=valueE,proto3" json:"valueE,omitempty"`
	ValueF int64         `protobuf:"zigzag64,6,opt,name=valueF,proto3" json:"valueF,omitempty"`
	ValueG uint32        `protobuf:"fixed32,7,opt,name=valueG,proto3" json:"valueG,omitempty"`
	ValueH uint64        `protobuf:"fixed64,8,opt,name=valueH,proto3" json:"valueH,omitempty"`
	ValueI int32         `protobuf:"fixed32,9,opt,name=valueI,proto3" json:"valueI,omitempty"`
	ValueJ int64         `protobuf:"fixed64,10,opt,name=valueJ,proto3" json:"valueJ,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,11,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*Integers) Descriptor deprecated

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

Deprecated: Use Integers.ProtoReflect.Descriptor instead.

func (*Integers) GetSalts

func (x *Integers) GetSalts() []*proto.Salt

func (*Integers) GetValueA

func (x *Integers) GetValueA() int32

func (*Integers) GetValueB

func (x *Integers) GetValueB() int64

func (*Integers) GetValueC

func (x *Integers) GetValueC() uint32

func (*Integers) GetValueD

func (x *Integers) GetValueD() uint64

func (*Integers) GetValueE

func (x *Integers) GetValueE() int32

func (*Integers) GetValueF

func (x *Integers) GetValueF() int64

func (*Integers) GetValueG

func (x *Integers) GetValueG() uint32

func (*Integers) GetValueH

func (x *Integers) GetValueH() uint64

func (*Integers) GetValueI

func (x *Integers) GetValueI() int32

func (*Integers) GetValueJ

func (x *Integers) GetValueJ() int64

func (*Integers) ProtoMessage

func (*Integers) ProtoMessage()

func (*Integers) ProtoReflect added in v1.0.0

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

func (*Integers) Reset

func (x *Integers) Reset()

func (*Integers) String

func (x *Integers) String() string

type InvalidHashedFieldDocument

type InvalidHashedFieldDocument struct {
	Value string        `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Salts []*proto.Salt `protobuf:"bytes,2,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*InvalidHashedFieldDocument) Descriptor deprecated

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

Deprecated: Use InvalidHashedFieldDocument.ProtoReflect.Descriptor instead.

func (*InvalidHashedFieldDocument) GetSalts

func (x *InvalidHashedFieldDocument) GetSalts() []*proto.Salt

func (*InvalidHashedFieldDocument) GetValue

func (x *InvalidHashedFieldDocument) GetValue() string

func (*InvalidHashedFieldDocument) ProtoMessage

func (*InvalidHashedFieldDocument) ProtoMessage()

func (*InvalidHashedFieldDocument) ProtoReflect added in v1.0.0

func (*InvalidHashedFieldDocument) Reset

func (x *InvalidHashedFieldDocument) Reset()

func (*InvalidHashedFieldDocument) String

func (x *InvalidHashedFieldDocument) String() string

type LongDocument

type LongDocument struct {
	Value0 int64         `protobuf:"varint,16,opt,name=value0,proto3" json:"value0,omitempty"`
	Value1 int64         `protobuf:"varint,1,opt,name=value1,proto3" json:"value1,omitempty"`
	Value2 int64         `protobuf:"varint,2,opt,name=value2,proto3" json:"value2,omitempty"`
	Value3 int64         `protobuf:"varint,3,opt,name=value3,proto3" json:"value3,omitempty"`
	Value4 int64         `protobuf:"varint,4,opt,name=value4,proto3" json:"value4,omitempty"`
	Value5 int64         `protobuf:"varint,5,opt,name=value5,proto3" json:"value5,omitempty"`
	Value6 int64         `protobuf:"varint,6,opt,name=value6,proto3" json:"value6,omitempty"`
	Value7 int64         `protobuf:"varint,7,opt,name=value7,proto3" json:"value7,omitempty"`
	Value8 int64         `protobuf:"varint,8,opt,name=value8,proto3" json:"value8,omitempty"`
	Value9 int64         `protobuf:"varint,9,opt,name=value9,proto3" json:"value9,omitempty"`
	ValueA int64         `protobuf:"varint,10,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB int64         `protobuf:"varint,11,opt,name=valueB,proto3" json:"valueB,omitempty"`
	ValueC int64         `protobuf:"varint,12,opt,name=valueC,proto3" json:"valueC,omitempty"`
	ValueD int64         `protobuf:"varint,13,opt,name=valueD,proto3" json:"valueD,omitempty"`
	ValueE int64         `protobuf:"varint,14,opt,name=valueE,proto3" json:"valueE,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,15,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}
var LongDocumentExample LongDocument = LongDocument{Value0: 1, Value1: 2, Value2: 3, Value3: 4, Value4: 5, Value5: 6, Value6: 7, Value7: 8, Value8: 9, Value9: 10, ValueA: 11, ValueB: 12, ValueC: 13, ValueD: 14, ValueE: 15}

func (*LongDocument) Descriptor deprecated

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

Deprecated: Use LongDocument.ProtoReflect.Descriptor instead.

func (*LongDocument) GetSalts

func (x *LongDocument) GetSalts() []*proto.Salt

func (*LongDocument) GetValue0

func (x *LongDocument) GetValue0() int64

func (*LongDocument) GetValue1

func (x *LongDocument) GetValue1() int64

func (*LongDocument) GetValue2

func (x *LongDocument) GetValue2() int64

func (*LongDocument) GetValue3

func (x *LongDocument) GetValue3() int64

func (*LongDocument) GetValue4

func (x *LongDocument) GetValue4() int64

func (*LongDocument) GetValue5

func (x *LongDocument) GetValue5() int64

func (*LongDocument) GetValue6

func (x *LongDocument) GetValue6() int64

func (*LongDocument) GetValue7

func (x *LongDocument) GetValue7() int64

func (*LongDocument) GetValue8

func (x *LongDocument) GetValue8() int64

func (*LongDocument) GetValue9

func (x *LongDocument) GetValue9() int64

func (*LongDocument) GetValueA

func (x *LongDocument) GetValueA() int64

func (*LongDocument) GetValueB

func (x *LongDocument) GetValueB() int64

func (*LongDocument) GetValueC

func (x *LongDocument) GetValueC() int64

func (*LongDocument) GetValueD

func (x *LongDocument) GetValueD() int64

func (*LongDocument) GetValueE

func (x *LongDocument) GetValueE() int64

func (*LongDocument) ProtoMessage

func (*LongDocument) ProtoMessage()

func (*LongDocument) ProtoReflect added in v1.0.0

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

func (*LongDocument) Reset

func (x *LongDocument) Reset()

func (*LongDocument) String

func (x *LongDocument) String() string

type Name

type Name struct {
	First string `protobuf:"bytes,1,opt,name=first,proto3" json:"first,omitempty"`
	Last  string `protobuf:"bytes,2,opt,name=last,proto3" json:"last,omitempty"`
	// contains filtered or unexported fields
}

func (*Name) Descriptor deprecated

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

Deprecated: Use Name.ProtoReflect.Descriptor instead.

func (*Name) GetFirst

func (x *Name) GetFirst() string

func (*Name) GetLast

func (x *Name) GetLast() string

func (*Name) ProtoMessage

func (*Name) ProtoMessage()

func (*Name) ProtoReflect added in v1.0.0

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

func (*Name) Reset

func (x *Name) Reset()

func (*Name) String

func (x *Name) String() string

type NamePadded

type NamePadded struct {
	First string `protobuf:"bytes,1,opt,name=first,proto3" json:"first,omitempty"`
	Last  string `protobuf:"bytes,2,opt,name=last,proto3" json:"last,omitempty"`
	Age   int32  `protobuf:"varint,3,opt,name=age,proto3" json:"age,omitempty"`
	// contains filtered or unexported fields
}

func (*NamePadded) Descriptor deprecated

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

Deprecated: Use NamePadded.ProtoReflect.Descriptor instead.

func (*NamePadded) GetAge

func (x *NamePadded) GetAge() int32

func (*NamePadded) GetFirst

func (x *NamePadded) GetFirst() string

func (*NamePadded) GetLast

func (x *NamePadded) GetLast() string

func (*NamePadded) ProtoMessage

func (*NamePadded) ProtoMessage()

func (*NamePadded) ProtoReflect added in v1.0.0

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

func (*NamePadded) Reset

func (x *NamePadded) Reset()

func (*NamePadded) String

func (x *NamePadded) String() string

type NestedMap

type NestedMap struct {
	Value map[int32]*SimpleMap `` /* 152-byte string literal not displayed */
	Salts []*proto.Salt        `protobuf:"bytes,2,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*NestedMap) Descriptor deprecated

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

Deprecated: Use NestedMap.ProtoReflect.Descriptor instead.

func (*NestedMap) GetSalts

func (x *NestedMap) GetSalts() []*proto.Salt

func (*NestedMap) GetValue

func (x *NestedMap) GetValue() map[int32]*SimpleMap

func (*NestedMap) ProtoMessage

func (*NestedMap) ProtoMessage()

func (*NestedMap) ProtoReflect added in v1.0.0

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

func (*NestedMap) Reset

func (x *NestedMap) Reset()

func (*NestedMap) String

func (x *NestedMap) String() string

type NestedRepeatedDocument

type NestedRepeatedDocument struct {
	ValueA string        `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB string        `protobuf:"bytes,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	ValueC []*SimpleItem `protobuf:"bytes,3,rep,name=valueC,proto3" json:"valueC,omitempty"`
	ValueD *TwoLevelItem `protobuf:"bytes,4,opt,name=valueD,proto3" json:"valueD,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,5,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*NestedRepeatedDocument) Descriptor deprecated

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

Deprecated: Use NestedRepeatedDocument.ProtoReflect.Descriptor instead.

func (*NestedRepeatedDocument) GetSalts

func (x *NestedRepeatedDocument) GetSalts() []*proto.Salt

func (*NestedRepeatedDocument) GetValueA

func (x *NestedRepeatedDocument) GetValueA() string

func (*NestedRepeatedDocument) GetValueB

func (x *NestedRepeatedDocument) GetValueB() string

func (*NestedRepeatedDocument) GetValueC

func (x *NestedRepeatedDocument) GetValueC() []*SimpleItem

func (*NestedRepeatedDocument) GetValueD

func (x *NestedRepeatedDocument) GetValueD() *TwoLevelItem

func (*NestedRepeatedDocument) ProtoMessage

func (*NestedRepeatedDocument) ProtoMessage()

func (*NestedRepeatedDocument) ProtoReflect added in v1.0.0

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

func (*NestedRepeatedDocument) Reset

func (x *NestedRepeatedDocument) Reset()

func (*NestedRepeatedDocument) String

func (x *NestedRepeatedDocument) String() string

type NoSaltDocument

type NoSaltDocument struct {
	ValueNoSalt string `protobuf:"bytes,1,opt,name=valueNoSalt,proto3" json:"valueNoSalt,omitempty"`
	ValueSalt   string `protobuf:"bytes,2,opt,name=valueSalt,proto3" json:"valueSalt,omitempty"`
	Name        *Name  `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*NoSaltDocument) Descriptor deprecated

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

Deprecated: Use NoSaltDocument.ProtoReflect.Descriptor instead.

func (*NoSaltDocument) GetName

func (x *NoSaltDocument) GetName() *Name

func (*NoSaltDocument) GetValueNoSalt

func (x *NoSaltDocument) GetValueNoSalt() string

func (*NoSaltDocument) GetValueSalt

func (x *NoSaltDocument) GetValueSalt() string

func (*NoSaltDocument) ProtoMessage

func (*NoSaltDocument) ProtoMessage()

func (*NoSaltDocument) ProtoReflect added in v1.0.0

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

func (*NoSaltDocument) Reset

func (x *NoSaltDocument) Reset()

func (*NoSaltDocument) String

func (x *NoSaltDocument) String() string

type OneofSample

type OneofSample struct {
	ValueA int32 `protobuf:"varint,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	// Types that are assignable to OneofBlock:
	//	*OneofSample_ValueB
	//	*OneofSample_ValueC
	//	*OneofSample_ValueD
	OneofBlock isOneofSample_OneofBlock `protobuf_oneof:"oneofBlock"`
	ValueE     int32                    `protobuf:"varint,5,opt,name=valueE,proto3" json:"valueE,omitempty"`
	Salts      []*proto.Salt            `protobuf:"bytes,6,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*OneofSample) Descriptor deprecated

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

Deprecated: Use OneofSample.ProtoReflect.Descriptor instead.

func (*OneofSample) GetOneofBlock

func (m *OneofSample) GetOneofBlock() isOneofSample_OneofBlock

func (*OneofSample) GetSalts

func (x *OneofSample) GetSalts() []*proto.Salt

func (*OneofSample) GetValueA

func (x *OneofSample) GetValueA() int32

func (*OneofSample) GetValueB

func (x *OneofSample) GetValueB() int32

func (*OneofSample) GetValueC

func (x *OneofSample) GetValueC() string

func (*OneofSample) GetValueD

func (x *OneofSample) GetValueD() *SimpleItem

func (*OneofSample) GetValueE

func (x *OneofSample) GetValueE() int32

func (*OneofSample) ProtoMessage

func (*OneofSample) ProtoMessage()

func (*OneofSample) ProtoReflect added in v1.0.0

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

func (*OneofSample) Reset

func (x *OneofSample) Reset()

func (*OneofSample) String

func (x *OneofSample) String() string

type OneofSample_ValueB

type OneofSample_ValueB struct {
	ValueB int32 `protobuf:"varint,2,opt,name=valueB,proto3,oneof"`
}

type OneofSample_ValueC

type OneofSample_ValueC struct {
	ValueC string `protobuf:"bytes,3,opt,name=valueC,proto3,oneof"`
}

type OneofSample_ValueD

type OneofSample_ValueD struct {
	ValueD *SimpleItem `protobuf:"bytes,4,opt,name=valueD,proto3,oneof"`
}

type PhoneNumber

type PhoneNumber struct {
	Type        string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Countrycode string `protobuf:"bytes,2,opt,name=countrycode,proto3" json:"countrycode,omitempty"`
	Number      string `protobuf:"bytes,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*PhoneNumber) Descriptor deprecated

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

Deprecated: Use PhoneNumber.ProtoReflect.Descriptor instead.

func (*PhoneNumber) GetCountrycode

func (x *PhoneNumber) GetCountrycode() string

func (*PhoneNumber) GetNumber

func (x *PhoneNumber) GetNumber() string

func (*PhoneNumber) GetType

func (x *PhoneNumber) GetType() string

func (*PhoneNumber) ProtoMessage

func (*PhoneNumber) ProtoMessage()

func (*PhoneNumber) ProtoReflect added in v1.0.0

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

func (*PhoneNumber) Reset

func (x *PhoneNumber) Reset()

func (*PhoneNumber) String

func (x *PhoneNumber) String() string

type RepeatedItem

type RepeatedItem struct {
	ValueA []*SimpleItem `protobuf:"bytes,1,rep,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB string        `protobuf:"bytes,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,3,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*RepeatedItem) Descriptor deprecated

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

Deprecated: Use RepeatedItem.ProtoReflect.Descriptor instead.

func (*RepeatedItem) GetSalts

func (x *RepeatedItem) GetSalts() []*proto.Salt

func (*RepeatedItem) GetValueA

func (x *RepeatedItem) GetValueA() []*SimpleItem

func (*RepeatedItem) GetValueB

func (x *RepeatedItem) GetValueB() string

func (*RepeatedItem) ProtoMessage

func (*RepeatedItem) ProtoMessage()

func (*RepeatedItem) ProtoReflect added in v1.0.0

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

func (*RepeatedItem) Reset

func (x *RepeatedItem) Reset()

func (*RepeatedItem) String

func (x *RepeatedItem) String() string

type SimpleEntries

type SimpleEntries struct {
	Entries []*SimpleEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	Salts   []*proto.Salt  `protobuf:"bytes,2,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*SimpleEntries) Descriptor deprecated

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

Deprecated: Use SimpleEntries.ProtoReflect.Descriptor instead.

func (*SimpleEntries) GetEntries

func (x *SimpleEntries) GetEntries() []*SimpleEntry

func (*SimpleEntries) GetSalts

func (x *SimpleEntries) GetSalts() []*proto.Salt

func (*SimpleEntries) ProtoMessage

func (*SimpleEntries) ProtoMessage()

func (*SimpleEntries) ProtoReflect added in v1.0.0

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

func (*SimpleEntries) Reset

func (x *SimpleEntries) Reset()

func (*SimpleEntries) String

func (x *SimpleEntries) String() string

type SimpleEntry

type SimpleEntry struct {
	EntryKey   string `protobuf:"bytes,1,opt,name=entry_key,json=entryKey,proto3" json:"entry_key,omitempty"`
	EntryValue string `protobuf:"bytes,2,opt,name=entry_value,json=entryValue,proto3" json:"entry_value,omitempty"`
	// contains filtered or unexported fields
}

func (*SimpleEntry) Descriptor deprecated

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

Deprecated: Use SimpleEntry.ProtoReflect.Descriptor instead.

func (*SimpleEntry) GetEntryKey

func (x *SimpleEntry) GetEntryKey() string

func (*SimpleEntry) GetEntryValue

func (x *SimpleEntry) GetEntryValue() string

func (*SimpleEntry) ProtoMessage

func (*SimpleEntry) ProtoMessage()

func (*SimpleEntry) ProtoReflect added in v1.0.0

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

func (*SimpleEntry) Reset

func (x *SimpleEntry) Reset()

func (*SimpleEntry) String

func (x *SimpleEntry) String() string

type SimpleItem

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

func (*SimpleItem) Descriptor deprecated

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

Deprecated: Use SimpleItem.ProtoReflect.Descriptor instead.

func (*SimpleItem) GetValueA

func (x *SimpleItem) GetValueA() string

func (*SimpleItem) ProtoMessage

func (*SimpleItem) ProtoMessage()

func (*SimpleItem) ProtoReflect added in v1.0.0

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

func (*SimpleItem) Reset

func (x *SimpleItem) Reset()

func (*SimpleItem) String

func (x *SimpleItem) String() string

type SimpleMap

type SimpleMap struct {
	Value map[int32]string `` /* 152-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SimpleMap) Descriptor deprecated

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

Deprecated: Use SimpleMap.ProtoReflect.Descriptor instead.

func (*SimpleMap) GetValue

func (x *SimpleMap) GetValue() map[int32]string

func (*SimpleMap) ProtoMessage

func (*SimpleMap) ProtoMessage()

func (*SimpleMap) ProtoReflect added in v1.0.0

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

func (*SimpleMap) Reset

func (x *SimpleMap) Reset()

func (*SimpleMap) String

func (x *SimpleMap) String() string

type SimpleMapDocument

type SimpleMapDocument struct {
	ValueA string            `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB string            `protobuf:"bytes,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	ValueC map[string]string `` /* 153-byte string literal not displayed */
	ValueD map[int32]string  `` /* 154-byte string literal not displayed */
	Salts  []*proto.Salt     `protobuf:"bytes,5,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*SimpleMapDocument) Descriptor deprecated

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

Deprecated: Use SimpleMapDocument.ProtoReflect.Descriptor instead.

func (*SimpleMapDocument) GetSalts

func (x *SimpleMapDocument) GetSalts() []*proto.Salt

func (*SimpleMapDocument) GetValueA

func (x *SimpleMapDocument) GetValueA() string

func (*SimpleMapDocument) GetValueB

func (x *SimpleMapDocument) GetValueB() string

func (*SimpleMapDocument) GetValueC

func (x *SimpleMapDocument) GetValueC() map[string]string

func (*SimpleMapDocument) GetValueD

func (x *SimpleMapDocument) GetValueD() map[int32]string

func (*SimpleMapDocument) ProtoMessage

func (*SimpleMapDocument) ProtoMessage()

func (*SimpleMapDocument) ProtoReflect added in v1.0.0

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

func (*SimpleMapDocument) Reset

func (x *SimpleMapDocument) Reset()

func (*SimpleMapDocument) String

func (x *SimpleMapDocument) String() string

type SimpleRepeatedDocument

type SimpleRepeatedDocument struct {
	ValueA string        `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB string        `protobuf:"bytes,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	ValueC []string      `protobuf:"bytes,3,rep,name=valueC,proto3" json:"valueC,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,4,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*SimpleRepeatedDocument) Descriptor deprecated

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

Deprecated: Use SimpleRepeatedDocument.ProtoReflect.Descriptor instead.

func (*SimpleRepeatedDocument) GetSalts

func (x *SimpleRepeatedDocument) GetSalts() []*proto.Salt

func (*SimpleRepeatedDocument) GetValueA

func (x *SimpleRepeatedDocument) GetValueA() string

func (*SimpleRepeatedDocument) GetValueB

func (x *SimpleRepeatedDocument) GetValueB() string

func (*SimpleRepeatedDocument) GetValueC

func (x *SimpleRepeatedDocument) GetValueC() []string

func (*SimpleRepeatedDocument) ProtoMessage

func (*SimpleRepeatedDocument) ProtoMessage()

func (*SimpleRepeatedDocument) ProtoReflect added in v1.0.0

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

func (*SimpleRepeatedDocument) Reset

func (x *SimpleRepeatedDocument) Reset()

func (*SimpleRepeatedDocument) String

func (x *SimpleRepeatedDocument) String() string

type SimpleStringMap

type SimpleStringMap struct {
	Value map[string]string `` /* 151-byte string literal not displayed */
	Salts []*proto.Salt     `protobuf:"bytes,2,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*SimpleStringMap) Descriptor deprecated

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

Deprecated: Use SimpleStringMap.ProtoReflect.Descriptor instead.

func (*SimpleStringMap) GetSalts

func (x *SimpleStringMap) GetSalts() []*proto.Salt

func (*SimpleStringMap) GetValue

func (x *SimpleStringMap) GetValue() map[string]string

func (*SimpleStringMap) ProtoMessage

func (*SimpleStringMap) ProtoMessage()

func (*SimpleStringMap) ProtoReflect added in v1.0.0

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

func (*SimpleStringMap) Reset

func (x *SimpleStringMap) Reset()

func (*SimpleStringMap) String

func (x *SimpleStringMap) String() string

type TwoLevelItem

type TwoLevelItem struct {
	ValueA *SimpleItem   `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB string        `protobuf:"bytes,2,opt,name=valueB,proto3" json:"valueB,omitempty"`
	Salts  []*proto.Salt `protobuf:"bytes,3,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*TwoLevelItem) Descriptor deprecated

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

Deprecated: Use TwoLevelItem.ProtoReflect.Descriptor instead.

func (*TwoLevelItem) GetSalts

func (x *TwoLevelItem) GetSalts() []*proto.Salt

func (*TwoLevelItem) GetValueA

func (x *TwoLevelItem) GetValueA() *SimpleItem

func (*TwoLevelItem) GetValueB

func (x *TwoLevelItem) GetValueB() string

func (*TwoLevelItem) ProtoMessage

func (*TwoLevelItem) ProtoMessage()

func (*TwoLevelItem) ProtoReflect added in v1.0.0

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

func (*TwoLevelItem) Reset

func (x *TwoLevelItem) Reset()

func (*TwoLevelItem) String

func (x *TwoLevelItem) String() string

type TwoLevelRepeatedDocument

type TwoLevelRepeatedDocument struct {
	ValueA string          `protobuf:"bytes,1,opt,name=valueA,proto3" json:"valueA,omitempty"`
	ValueB []*RepeatedItem `protobuf:"bytes,2,rep,name=valueB,proto3" json:"valueB,omitempty"`
	Salts  []*proto.Salt   `protobuf:"bytes,3,rep,name=salts,proto3" json:"salts,omitempty"`
	// contains filtered or unexported fields
}

func (*TwoLevelRepeatedDocument) Descriptor deprecated

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

Deprecated: Use TwoLevelRepeatedDocument.ProtoReflect.Descriptor instead.

func (*TwoLevelRepeatedDocument) GetSalts

func (x *TwoLevelRepeatedDocument) GetSalts() []*proto.Salt

func (*TwoLevelRepeatedDocument) GetValueA

func (x *TwoLevelRepeatedDocument) GetValueA() string

func (*TwoLevelRepeatedDocument) GetValueB

func (x *TwoLevelRepeatedDocument) GetValueB() []*RepeatedItem

func (*TwoLevelRepeatedDocument) ProtoMessage

func (*TwoLevelRepeatedDocument) ProtoMessage()

func (*TwoLevelRepeatedDocument) ProtoReflect added in v1.0.0

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

func (*TwoLevelRepeatedDocument) Reset

func (x *TwoLevelRepeatedDocument) Reset()

func (*TwoLevelRepeatedDocument) String

func (x *TwoLevelRepeatedDocument) String() string

type UnsupportedAppendDocument

type UnsupportedAppendDocument struct {
	Name   *Name          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Nested *ExampleNested `protobuf:"bytes,2,opt,name=nested,proto3" json:"nested,omitempty"`
	// contains filtered or unexported fields
}

func (*UnsupportedAppendDocument) Descriptor deprecated

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

Deprecated: Use UnsupportedAppendDocument.ProtoReflect.Descriptor instead.

func (*UnsupportedAppendDocument) GetName

func (x *UnsupportedAppendDocument) GetName() *Name

func (*UnsupportedAppendDocument) GetNested

func (x *UnsupportedAppendDocument) GetNested() *ExampleNested

func (*UnsupportedAppendDocument) ProtoMessage

func (*UnsupportedAppendDocument) ProtoMessage()

func (*UnsupportedAppendDocument) ProtoReflect added in v1.0.0

func (*UnsupportedAppendDocument) Reset

func (x *UnsupportedAppendDocument) Reset()

func (*UnsupportedAppendDocument) String

func (x *UnsupportedAppendDocument) String() string

Jump to

Keyboard shortcuts

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