observerv1

package
v0.0.32 Latest Latest
Warning

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

Go to latest
Published: May 2, 2024 License: Unlicense Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CreatedPayload_Object = graphql.NewObject(graphql.ObjectConfig{
	Name: "CreatedPayload",
	Fields: graphql.Fields{
		"key": &graphql.Field{
			Type: graphql.String,
		},
		"element": &graphql.Field{
			Type: utils.Bytes,
		},
	},
	Description: "",
})
View Source
var DeletedPayload_Object = graphql.NewObject(graphql.ObjectConfig{
	Name: "DeletedPayload",
	Fields: graphql.Fields{
		"key": &graphql.Field{
			Type: graphql.String,
		},
	},
	Description: "",
})
View Source
var File_observer_v1_events_proto protoreflect.FileDescriptor
View Source
var ReplacedPayload_Object = graphql.NewObject(graphql.ObjectConfig{
	Name: "ReplacedPayload",
	Fields: graphql.Fields{
		"element": &graphql.Field{
			Type: utils.Bytes,
		},
	},
	Description: "",
})
View Source
var UpdatedPayload_Object = graphql.NewObject(graphql.ObjectConfig{
	Name: "UpdatedPayload",
	Fields: graphql.Fields{
		"element": &graphql.Field{
			Type: utils.Bytes,
		},
	},
	Description: "",
})

Functions

This section is empty.

Types

type CreatedPayload

type CreatedPayload struct {
	Key     string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Element []byte `protobuf:"bytes,2,opt,name=element,proto3" json:"element,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatedPayload) Descriptor deprecated

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

Deprecated: Use CreatedPayload.ProtoReflect.Descriptor instead.

func (*CreatedPayload) GetElement

func (x *CreatedPayload) GetElement() []byte

func (*CreatedPayload) GetKey

func (x *CreatedPayload) GetKey() string

func (*CreatedPayload) ProtoMessage

func (*CreatedPayload) ProtoMessage()

func (*CreatedPayload) ProtoReflect

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

func (*CreatedPayload) QueryObject added in v0.0.19

func (*CreatedPayload) QueryObject() *graphql.Object

QueryObject ...

func (*CreatedPayload) Reset

func (x *CreatedPayload) Reset()

func (*CreatedPayload) Schema added in v0.0.10

func (*CreatedPayload) Schema() map[string]interface{}

Schema ...

func (*CreatedPayload) String

func (x *CreatedPayload) String() string

func (*CreatedPayload) UnmarshalJSON added in v0.0.19

func (o *CreatedPayload) UnmarshalJSON(b []byte) error

UnmarshalJSON ...

func (*CreatedPayload) UnmarshalMap added in v0.0.19

func (o *CreatedPayload) UnmarshalMap(values map[string]interface{})

UnmarshalMap populates struct fields from a map, handling decoding for special fields.

type DeletedPayload

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

func (*DeletedPayload) Descriptor deprecated

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

Deprecated: Use DeletedPayload.ProtoReflect.Descriptor instead.

func (*DeletedPayload) GetKey

func (x *DeletedPayload) GetKey() string

func (*DeletedPayload) ProtoMessage

func (*DeletedPayload) ProtoMessage()

func (*DeletedPayload) ProtoReflect

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

func (*DeletedPayload) QueryObject added in v0.0.19

func (*DeletedPayload) QueryObject() *graphql.Object

QueryObject ...

func (*DeletedPayload) Reset

func (x *DeletedPayload) Reset()

func (*DeletedPayload) Schema added in v0.0.10

func (*DeletedPayload) Schema() map[string]interface{}

Schema ...

func (*DeletedPayload) String

func (x *DeletedPayload) String() string

func (*DeletedPayload) UnmarshalJSON added in v0.0.19

func (o *DeletedPayload) UnmarshalJSON(b []byte) error

UnmarshalJSON ...

func (*DeletedPayload) UnmarshalMap added in v0.0.19

func (o *DeletedPayload) UnmarshalMap(values map[string]interface{})

UnmarshalMap populates struct fields from a map, handling decoding for special fields.

type ReplacedPayload added in v0.0.24

type ReplacedPayload struct {
	Element []byte `protobuf:"bytes,1,opt,name=element,proto3" json:"element,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplacedPayload) Descriptor deprecated added in v0.0.24

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

Deprecated: Use ReplacedPayload.ProtoReflect.Descriptor instead.

func (*ReplacedPayload) GetElement added in v0.0.24

func (x *ReplacedPayload) GetElement() []byte

func (*ReplacedPayload) ProtoMessage added in v0.0.24

func (*ReplacedPayload) ProtoMessage()

func (*ReplacedPayload) ProtoReflect added in v0.0.24

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

func (*ReplacedPayload) QueryObject added in v0.0.24

func (*ReplacedPayload) QueryObject() *graphql.Object

QueryObject ...

func (*ReplacedPayload) Reset added in v0.0.24

func (x *ReplacedPayload) Reset()

func (*ReplacedPayload) Schema added in v0.0.24

func (*ReplacedPayload) Schema() map[string]interface{}

Schema ...

func (*ReplacedPayload) String added in v0.0.24

func (x *ReplacedPayload) String() string

func (*ReplacedPayload) UnmarshalJSON added in v0.0.24

func (o *ReplacedPayload) UnmarshalJSON(b []byte) error

UnmarshalJSON ...

func (*ReplacedPayload) UnmarshalMap added in v0.0.24

func (o *ReplacedPayload) UnmarshalMap(values map[string]interface{})

UnmarshalMap populates struct fields from a map, handling decoding for special fields.

type UpdatedPayload

type UpdatedPayload struct {
	Element []byte `protobuf:"bytes,1,opt,name=element,proto3" json:"element,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatedPayload) Descriptor deprecated

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

Deprecated: Use UpdatedPayload.ProtoReflect.Descriptor instead.

func (*UpdatedPayload) GetElement

func (x *UpdatedPayload) GetElement() []byte

func (*UpdatedPayload) ProtoMessage

func (*UpdatedPayload) ProtoMessage()

func (*UpdatedPayload) ProtoReflect

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

func (*UpdatedPayload) QueryObject added in v0.0.19

func (*UpdatedPayload) QueryObject() *graphql.Object

QueryObject ...

func (*UpdatedPayload) Reset

func (x *UpdatedPayload) Reset()

func (*UpdatedPayload) Schema added in v0.0.10

func (*UpdatedPayload) Schema() map[string]interface{}

Schema ...

func (*UpdatedPayload) String

func (x *UpdatedPayload) String() string

func (*UpdatedPayload) UnmarshalJSON added in v0.0.19

func (o *UpdatedPayload) UnmarshalJSON(b []byte) error

UnmarshalJSON ...

func (*UpdatedPayload) UnmarshalMap added in v0.0.19

func (o *UpdatedPayload) UnmarshalMap(values map[string]interface{})

UnmarshalMap populates struct fields from a map, handling decoding for special fields.

Jump to

Keyboard shortcuts

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