api

package
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: May 6, 2021 License: BSD-2-Clause Imports: 18 Imported by: 0

Documentation

Overview

Package api is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

Functions

func RegisterApiHandler

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

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

func RegisterApiHandlerClient

func RegisterApiHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ApiClient) error

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

func RegisterApiHandlerFromEndpoint

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

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

func RegisterApiHandlerServer

func RegisterApiHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ApiServer) error

RegisterApiHandlerServer registers the http handlers for service Api to "mux". UnaryRPC :call ApiServer 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 RegisterApiHandlerFromEndpoint instead.

func RegisterApiServer

func RegisterApiServer(s grpc.ServiceRegistrar, srv ApiServer)

Types

type ApiClient

type ApiClient interface {
	GetFeeds(ctx context.Context, in *GetFeedsRequest, opts ...grpc.CallOption) (*GetFeedsResponse, error)
	CreateFeeds(ctx context.Context, in *CreateFeedsRequest, opts ...grpc.CallOption) (*CreateFeedsResponse, error)
	CreateFeed(ctx context.Context, in *CreateFeedRequest, opts ...grpc.CallOption) (*CreateFeedResponse, error)
	GetFeed(ctx context.Context, in *GetFeedRequest, opts ...grpc.CallOption) (*GetFeedResponse, error)
	UpdateFeed(ctx context.Context, in *UpdateFeedRequest, opts ...grpc.CallOption) (*UpdateFeedResponse, error)
	DeleteFeed(ctx context.Context, in *DeleteFeedRequest, opts ...grpc.CallOption) (*DeleteFeedResponse, error)
	GetUserTwitterSources(ctx context.Context, in *GetUserTwitterSourcesRequest, opts ...grpc.CallOption) (*GetUserTwitterSourcesResponse, error)
	CreateUserTwitterSources(ctx context.Context, in *CreateUserTwitterSourcesRequest, opts ...grpc.CallOption) (*CreateUserTwitterSourcesResponse, error)
	CreateUserTwitterSource(ctx context.Context, in *CreateUserTwitterSourceRequest, opts ...grpc.CallOption) (*CreateUserTwitterSourceResponse, error)
	GetUserTwitterSource(ctx context.Context, in *GetUserTwitterSourceRequest, opts ...grpc.CallOption) (*GetUserTwitterSourceResponse, error)
	UpdateUserTwitterSource(ctx context.Context, in *UpdateUserTwitterSourceRequest, opts ...grpc.CallOption) (*UpdateUserTwitterSourceResponse, error)
	DeleteUserTwitterSource(ctx context.Context, in *DeleteUserTwitterSourceRequest, opts ...grpc.CallOption) (*DeleteUserTwitterSourceResponse, error)
	GetQueryTwitterSources(ctx context.Context, in *GetQueryTwitterSourcesRequest, opts ...grpc.CallOption) (*GetQueryTwitterSourcesResponse, error)
	CreateQueryTwitterSources(ctx context.Context, in *CreateQueryTwitterSourcesRequest, opts ...grpc.CallOption) (*CreateQueryTwitterSourcesResponse, error)
	CreateQueryTwitterSource(ctx context.Context, in *CreateQueryTwitterSourceRequest, opts ...grpc.CallOption) (*CreateQueryTwitterSourceResponse, error)
	GetQueryTwitterSource(ctx context.Context, in *GetQueryTwitterSourceRequest, opts ...grpc.CallOption) (*GetQueryTwitterSourceResponse, error)
	UpdateQueryTwitterSource(ctx context.Context, in *UpdateQueryTwitterSourceRequest, opts ...grpc.CallOption) (*UpdateQueryTwitterSourceResponse, error)
	DeleteQueryTwitterSource(ctx context.Context, in *DeleteQueryTwitterSourceRequest, opts ...grpc.CallOption) (*DeleteQueryTwitterSourceResponse, error)
}

ApiClient is the client API for Api service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewApiClient

func NewApiClient(cc grpc.ClientConnInterface) ApiClient

type ApiServer

type ApiServer interface {
	GetFeeds(context.Context, *GetFeedsRequest) (*GetFeedsResponse, error)
	CreateFeeds(context.Context, *CreateFeedsRequest) (*CreateFeedsResponse, error)
	CreateFeed(context.Context, *CreateFeedRequest) (*CreateFeedResponse, error)
	GetFeed(context.Context, *GetFeedRequest) (*GetFeedResponse, error)
	UpdateFeed(context.Context, *UpdateFeedRequest) (*UpdateFeedResponse, error)
	DeleteFeed(context.Context, *DeleteFeedRequest) (*DeleteFeedResponse, error)
	GetUserTwitterSources(context.Context, *GetUserTwitterSourcesRequest) (*GetUserTwitterSourcesResponse, error)
	CreateUserTwitterSources(context.Context, *CreateUserTwitterSourcesRequest) (*CreateUserTwitterSourcesResponse, error)
	CreateUserTwitterSource(context.Context, *CreateUserTwitterSourceRequest) (*CreateUserTwitterSourceResponse, error)
	GetUserTwitterSource(context.Context, *GetUserTwitterSourceRequest) (*GetUserTwitterSourceResponse, error)
	UpdateUserTwitterSource(context.Context, *UpdateUserTwitterSourceRequest) (*UpdateUserTwitterSourceResponse, error)
	DeleteUserTwitterSource(context.Context, *DeleteUserTwitterSourceRequest) (*DeleteUserTwitterSourceResponse, error)
	GetQueryTwitterSources(context.Context, *GetQueryTwitterSourcesRequest) (*GetQueryTwitterSourcesResponse, error)
	CreateQueryTwitterSources(context.Context, *CreateQueryTwitterSourcesRequest) (*CreateQueryTwitterSourcesResponse, error)
	CreateQueryTwitterSource(context.Context, *CreateQueryTwitterSourceRequest) (*CreateQueryTwitterSourceResponse, error)
	GetQueryTwitterSource(context.Context, *GetQueryTwitterSourceRequest) (*GetQueryTwitterSourceResponse, error)
	UpdateQueryTwitterSource(context.Context, *UpdateQueryTwitterSourceRequest) (*UpdateQueryTwitterSourceResponse, error)
	DeleteQueryTwitterSource(context.Context, *DeleteQueryTwitterSourceRequest) (*DeleteQueryTwitterSourceResponse, error)
	// contains filtered or unexported methods
}

ApiServer is the server API for Api service. All implementations must embed UnimplementedApiServer for forward compatibility

type CreateFeedData

type CreateFeedData struct {
	FeedId string `protobuf:"bytes,1,opt,name=feed_id,json=feedId,proto3" json:"feed_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateFeedData) Descriptor deprecated

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

Deprecated: Use CreateFeedData.ProtoReflect.Descriptor instead.

func (*CreateFeedData) GetFeedId

func (x *CreateFeedData) GetFeedId() string

func (*CreateFeedData) ProtoMessage

func (*CreateFeedData) ProtoMessage()

func (*CreateFeedData) ProtoReflect

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

func (*CreateFeedData) Reset

func (x *CreateFeedData) Reset()

func (*CreateFeedData) String

func (x *CreateFeedData) String() string

type CreateFeedRequest

type CreateFeedRequest struct {
	NewFeed *NewFeed `protobuf:"bytes,1,opt,name=new_feed,json=newFeed,proto3" json:"new_feed,omitempty"`
	// contains filtered or unexported fields
}

CreateFeedParameters holds parameters to CreateFeed

func (*CreateFeedRequest) Descriptor deprecated

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

Deprecated: Use CreateFeedRequest.ProtoReflect.Descriptor instead.

func (*CreateFeedRequest) GetNewFeed

func (x *CreateFeedRequest) GetNewFeed() *NewFeed

func (*CreateFeedRequest) ProtoMessage

func (*CreateFeedRequest) ProtoMessage()

func (*CreateFeedRequest) ProtoReflect

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

func (*CreateFeedRequest) Reset

func (x *CreateFeedRequest) Reset()

func (*CreateFeedRequest) String

func (x *CreateFeedRequest) String() string

type CreateFeedResponse

type CreateFeedResponse struct {
	Data   *CreateFeedData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateFeedResponse) Descriptor deprecated

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

Deprecated: Use CreateFeedResponse.ProtoReflect.Descriptor instead.

func (*CreateFeedResponse) GetData

func (x *CreateFeedResponse) GetData() *CreateFeedData

func (*CreateFeedResponse) GetErrors

func (x *CreateFeedResponse) GetErrors() *ResponseErrors

func (*CreateFeedResponse) ProtoMessage

func (*CreateFeedResponse) ProtoMessage()

func (*CreateFeedResponse) ProtoReflect

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

func (*CreateFeedResponse) Reset

func (x *CreateFeedResponse) Reset()

func (*CreateFeedResponse) String

func (x *CreateFeedResponse) String() string

type CreateFeedsData

type CreateFeedsData struct {
	FeedIds []string `protobuf:"bytes,1,rep,name=feed_ids,json=feedIds,proto3" json:"feed_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateFeedsData) Descriptor deprecated

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

Deprecated: Use CreateFeedsData.ProtoReflect.Descriptor instead.

func (*CreateFeedsData) GetFeedIds

func (x *CreateFeedsData) GetFeedIds() []string

func (*CreateFeedsData) ProtoMessage

func (*CreateFeedsData) ProtoMessage()

func (*CreateFeedsData) ProtoReflect

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

func (*CreateFeedsData) Reset

func (x *CreateFeedsData) Reset()

func (*CreateFeedsData) String

func (x *CreateFeedsData) String() string

type CreateFeedsRequest

type CreateFeedsRequest struct {
	NewFeeds *NewFeeds `protobuf:"bytes,1,opt,name=new_feeds,json=newFeeds,proto3" json:"new_feeds,omitempty"`
	// contains filtered or unexported fields
}

CreateFeedsParameters holds parameters to CreateFeeds

func (*CreateFeedsRequest) Descriptor deprecated

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

Deprecated: Use CreateFeedsRequest.ProtoReflect.Descriptor instead.

func (*CreateFeedsRequest) GetNewFeeds

func (x *CreateFeedsRequest) GetNewFeeds() *NewFeeds

func (*CreateFeedsRequest) ProtoMessage

func (*CreateFeedsRequest) ProtoMessage()

func (*CreateFeedsRequest) ProtoReflect

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

func (*CreateFeedsRequest) Reset

func (x *CreateFeedsRequest) Reset()

func (*CreateFeedsRequest) String

func (x *CreateFeedsRequest) String() string

type CreateFeedsResponse

type CreateFeedsResponse struct {
	Data   *CreateFeedsData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors  `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateFeedsResponse) Descriptor deprecated

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

Deprecated: Use CreateFeedsResponse.ProtoReflect.Descriptor instead.

func (*CreateFeedsResponse) GetData

func (x *CreateFeedsResponse) GetData() *CreateFeedsData

func (*CreateFeedsResponse) GetErrors

func (x *CreateFeedsResponse) GetErrors() *ResponseErrors

func (*CreateFeedsResponse) ProtoMessage

func (*CreateFeedsResponse) ProtoMessage()

func (*CreateFeedsResponse) ProtoReflect

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

func (*CreateFeedsResponse) Reset

func (x *CreateFeedsResponse) Reset()

func (*CreateFeedsResponse) String

func (x *CreateFeedsResponse) String() string

type CreateQueryTwitterSourceData

type CreateQueryTwitterSourceData struct {
	QueryTwitterSourceId string `protobuf:"bytes,1,opt,name=query_twitter_source_id,json=queryTwitterSourceId,proto3" json:"query_twitter_source_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateQueryTwitterSourceData) Descriptor deprecated

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

Deprecated: Use CreateQueryTwitterSourceData.ProtoReflect.Descriptor instead.

func (*CreateQueryTwitterSourceData) GetQueryTwitterSourceId

func (x *CreateQueryTwitterSourceData) GetQueryTwitterSourceId() string

func (*CreateQueryTwitterSourceData) ProtoMessage

func (*CreateQueryTwitterSourceData) ProtoMessage()

func (*CreateQueryTwitterSourceData) ProtoReflect

func (*CreateQueryTwitterSourceData) Reset

func (x *CreateQueryTwitterSourceData) Reset()

func (*CreateQueryTwitterSourceData) String

type CreateQueryTwitterSourceRequest

type CreateQueryTwitterSourceRequest struct {
	NewQueryTwitterSource *NewQueryTwitterSource `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

CreateQueryTwitterSourceParameters holds parameters to CreateQueryTwitterSource

func (*CreateQueryTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use CreateQueryTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*CreateQueryTwitterSourceRequest) GetNewQueryTwitterSource

func (x *CreateQueryTwitterSourceRequest) GetNewQueryTwitterSource() *NewQueryTwitterSource

func (*CreateQueryTwitterSourceRequest) ProtoMessage

func (*CreateQueryTwitterSourceRequest) ProtoMessage()

func (*CreateQueryTwitterSourceRequest) ProtoReflect

func (*CreateQueryTwitterSourceRequest) Reset

func (*CreateQueryTwitterSourceRequest) String

type CreateQueryTwitterSourceResponse

type CreateQueryTwitterSourceResponse struct {
	Data   *CreateQueryTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors               `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateQueryTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use CreateQueryTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*CreateQueryTwitterSourceResponse) GetData

func (*CreateQueryTwitterSourceResponse) GetErrors

func (*CreateQueryTwitterSourceResponse) ProtoMessage

func (*CreateQueryTwitterSourceResponse) ProtoMessage()

func (*CreateQueryTwitterSourceResponse) ProtoReflect

func (*CreateQueryTwitterSourceResponse) Reset

func (*CreateQueryTwitterSourceResponse) String

type CreateQueryTwitterSourcesData

type CreateQueryTwitterSourcesData struct {
	QueryTwitterSourceIds []string `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateQueryTwitterSourcesData) Descriptor deprecated

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

Deprecated: Use CreateQueryTwitterSourcesData.ProtoReflect.Descriptor instead.

func (*CreateQueryTwitterSourcesData) GetQueryTwitterSourceIds

func (x *CreateQueryTwitterSourcesData) GetQueryTwitterSourceIds() []string

func (*CreateQueryTwitterSourcesData) ProtoMessage

func (*CreateQueryTwitterSourcesData) ProtoMessage()

func (*CreateQueryTwitterSourcesData) ProtoReflect

func (*CreateQueryTwitterSourcesData) Reset

func (x *CreateQueryTwitterSourcesData) Reset()

func (*CreateQueryTwitterSourcesData) String

type CreateQueryTwitterSourcesRequest

type CreateQueryTwitterSourcesRequest struct {
	NewQueryTwitterSources *NewQueryTwitterSources `` /* 131-byte string literal not displayed */
	// contains filtered or unexported fields
}

CreateQueryTwitterSourcesParameters holds parameters to CreateQueryTwitterSources

func (*CreateQueryTwitterSourcesRequest) Descriptor deprecated

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

Deprecated: Use CreateQueryTwitterSourcesRequest.ProtoReflect.Descriptor instead.

func (*CreateQueryTwitterSourcesRequest) GetNewQueryTwitterSources

func (x *CreateQueryTwitterSourcesRequest) GetNewQueryTwitterSources() *NewQueryTwitterSources

func (*CreateQueryTwitterSourcesRequest) ProtoMessage

func (*CreateQueryTwitterSourcesRequest) ProtoMessage()

func (*CreateQueryTwitterSourcesRequest) ProtoReflect

func (*CreateQueryTwitterSourcesRequest) Reset

func (*CreateQueryTwitterSourcesRequest) String

type CreateQueryTwitterSourcesResponse

type CreateQueryTwitterSourcesResponse struct {
	Data   *CreateQueryTwitterSourcesData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors                `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateQueryTwitterSourcesResponse) Descriptor deprecated

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

Deprecated: Use CreateQueryTwitterSourcesResponse.ProtoReflect.Descriptor instead.

func (*CreateQueryTwitterSourcesResponse) GetData

func (*CreateQueryTwitterSourcesResponse) GetErrors

func (*CreateQueryTwitterSourcesResponse) ProtoMessage

func (*CreateQueryTwitterSourcesResponse) ProtoMessage()

func (*CreateQueryTwitterSourcesResponse) ProtoReflect

func (*CreateQueryTwitterSourcesResponse) Reset

func (*CreateQueryTwitterSourcesResponse) String

type CreateUserTwitterSourceData

type CreateUserTwitterSourceData struct {
	UserTwitterSourceId string `protobuf:"bytes,1,opt,name=user_twitter_source_id,json=userTwitterSourceId,proto3" json:"user_twitter_source_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserTwitterSourceData) Descriptor deprecated

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

Deprecated: Use CreateUserTwitterSourceData.ProtoReflect.Descriptor instead.

func (*CreateUserTwitterSourceData) GetUserTwitterSourceId

func (x *CreateUserTwitterSourceData) GetUserTwitterSourceId() string

func (*CreateUserTwitterSourceData) ProtoMessage

func (*CreateUserTwitterSourceData) ProtoMessage()

func (*CreateUserTwitterSourceData) ProtoReflect

func (*CreateUserTwitterSourceData) Reset

func (x *CreateUserTwitterSourceData) Reset()

func (*CreateUserTwitterSourceData) String

func (x *CreateUserTwitterSourceData) String() string

type CreateUserTwitterSourceRequest

type CreateUserTwitterSourceRequest struct {
	NewUserTwitterSource *NewUserTwitterSource `protobuf:"bytes,1,opt,name=new_user_twitter_source,json=newUserTwitterSource,proto3" json:"new_user_twitter_source,omitempty"`
	// contains filtered or unexported fields
}

CreateUserTwitterSourceParameters holds parameters to CreateUserTwitterSource

func (*CreateUserTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use CreateUserTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*CreateUserTwitterSourceRequest) GetNewUserTwitterSource

func (x *CreateUserTwitterSourceRequest) GetNewUserTwitterSource() *NewUserTwitterSource

func (*CreateUserTwitterSourceRequest) ProtoMessage

func (*CreateUserTwitterSourceRequest) ProtoMessage()

func (*CreateUserTwitterSourceRequest) ProtoReflect

func (*CreateUserTwitterSourceRequest) Reset

func (x *CreateUserTwitterSourceRequest) Reset()

func (*CreateUserTwitterSourceRequest) String

type CreateUserTwitterSourceResponse

type CreateUserTwitterSourceResponse struct {
	Data   *CreateUserTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors              `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use CreateUserTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*CreateUserTwitterSourceResponse) GetData

func (*CreateUserTwitterSourceResponse) GetErrors

func (*CreateUserTwitterSourceResponse) ProtoMessage

func (*CreateUserTwitterSourceResponse) ProtoMessage()

func (*CreateUserTwitterSourceResponse) ProtoReflect

func (*CreateUserTwitterSourceResponse) Reset

func (*CreateUserTwitterSourceResponse) String

type CreateUserTwitterSourcesData

type CreateUserTwitterSourcesData struct {
	UserTwitterSourceIds []string `protobuf:"bytes,1,rep,name=user_twitter_source_ids,json=userTwitterSourceIds,proto3" json:"user_twitter_source_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserTwitterSourcesData) Descriptor deprecated

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

Deprecated: Use CreateUserTwitterSourcesData.ProtoReflect.Descriptor instead.

func (*CreateUserTwitterSourcesData) GetUserTwitterSourceIds

func (x *CreateUserTwitterSourcesData) GetUserTwitterSourceIds() []string

func (*CreateUserTwitterSourcesData) ProtoMessage

func (*CreateUserTwitterSourcesData) ProtoMessage()

func (*CreateUserTwitterSourcesData) ProtoReflect

func (*CreateUserTwitterSourcesData) Reset

func (x *CreateUserTwitterSourcesData) Reset()

func (*CreateUserTwitterSourcesData) String

type CreateUserTwitterSourcesRequest

type CreateUserTwitterSourcesRequest struct {
	NewUserTwitterSources *NewUserTwitterSources `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

CreateUserTwitterSourcesParameters holds parameters to CreateUserTwitterSources

func (*CreateUserTwitterSourcesRequest) Descriptor deprecated

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

Deprecated: Use CreateUserTwitterSourcesRequest.ProtoReflect.Descriptor instead.

func (*CreateUserTwitterSourcesRequest) GetNewUserTwitterSources

func (x *CreateUserTwitterSourcesRequest) GetNewUserTwitterSources() *NewUserTwitterSources

func (*CreateUserTwitterSourcesRequest) ProtoMessage

func (*CreateUserTwitterSourcesRequest) ProtoMessage()

func (*CreateUserTwitterSourcesRequest) ProtoReflect

func (*CreateUserTwitterSourcesRequest) Reset

func (*CreateUserTwitterSourcesRequest) String

type CreateUserTwitterSourcesResponse

type CreateUserTwitterSourcesResponse struct {
	Data   *CreateUserTwitterSourcesData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors               `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserTwitterSourcesResponse) Descriptor deprecated

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

Deprecated: Use CreateUserTwitterSourcesResponse.ProtoReflect.Descriptor instead.

func (*CreateUserTwitterSourcesResponse) GetData

func (*CreateUserTwitterSourcesResponse) GetErrors

func (*CreateUserTwitterSourcesResponse) ProtoMessage

func (*CreateUserTwitterSourcesResponse) ProtoMessage()

func (*CreateUserTwitterSourcesResponse) ProtoReflect

func (*CreateUserTwitterSourcesResponse) Reset

func (*CreateUserTwitterSourcesResponse) String

type DeleteFeedData

type DeleteFeedData struct {
	DeletedFeedId string `protobuf:"bytes,1,opt,name=deleted_feed_id,json=deletedFeedId,proto3" json:"deleted_feed_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteFeedData) Descriptor deprecated

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

Deprecated: Use DeleteFeedData.ProtoReflect.Descriptor instead.

func (*DeleteFeedData) GetDeletedFeedId

func (x *DeleteFeedData) GetDeletedFeedId() string

func (*DeleteFeedData) ProtoMessage

func (*DeleteFeedData) ProtoMessage()

func (*DeleteFeedData) ProtoReflect

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

func (*DeleteFeedData) Reset

func (x *DeleteFeedData) Reset()

func (*DeleteFeedData) String

func (x *DeleteFeedData) String() string

type DeleteFeedRequest

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

DeleteFeedParameters holds parameters to DeleteFeed

func (*DeleteFeedRequest) Descriptor deprecated

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

Deprecated: Use DeleteFeedRequest.ProtoReflect.Descriptor instead.

func (*DeleteFeedRequest) GetId

func (x *DeleteFeedRequest) GetId() string

func (*DeleteFeedRequest) ProtoMessage

func (*DeleteFeedRequest) ProtoMessage()

func (*DeleteFeedRequest) ProtoReflect

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

func (*DeleteFeedRequest) Reset

func (x *DeleteFeedRequest) Reset()

func (*DeleteFeedRequest) String

func (x *DeleteFeedRequest) String() string

type DeleteFeedResponse

type DeleteFeedResponse struct {
	Data   *DeleteFeedData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteFeedResponse) Descriptor deprecated

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

Deprecated: Use DeleteFeedResponse.ProtoReflect.Descriptor instead.

func (*DeleteFeedResponse) GetData

func (x *DeleteFeedResponse) GetData() *DeleteFeedData

func (*DeleteFeedResponse) GetErrors

func (x *DeleteFeedResponse) GetErrors() *ResponseErrors

func (*DeleteFeedResponse) ProtoMessage

func (*DeleteFeedResponse) ProtoMessage()

func (*DeleteFeedResponse) ProtoReflect

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

func (*DeleteFeedResponse) Reset

func (x *DeleteFeedResponse) Reset()

func (*DeleteFeedResponse) String

func (x *DeleteFeedResponse) String() string

type DeleteQueryTwitterSourceData

type DeleteQueryTwitterSourceData struct {
	DeletedQueryTwitterSourceId string `` /* 148-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DeleteQueryTwitterSourceData) Descriptor deprecated

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

Deprecated: Use DeleteQueryTwitterSourceData.ProtoReflect.Descriptor instead.

func (*DeleteQueryTwitterSourceData) GetDeletedQueryTwitterSourceId

func (x *DeleteQueryTwitterSourceData) GetDeletedQueryTwitterSourceId() string

func (*DeleteQueryTwitterSourceData) ProtoMessage

func (*DeleteQueryTwitterSourceData) ProtoMessage()

func (*DeleteQueryTwitterSourceData) ProtoReflect

func (*DeleteQueryTwitterSourceData) Reset

func (x *DeleteQueryTwitterSourceData) Reset()

func (*DeleteQueryTwitterSourceData) String

type DeleteQueryTwitterSourceRequest

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

DeleteQueryTwitterSourceParameters holds parameters to DeleteQueryTwitterSource

func (*DeleteQueryTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use DeleteQueryTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*DeleteQueryTwitterSourceRequest) GetId

func (*DeleteQueryTwitterSourceRequest) ProtoMessage

func (*DeleteQueryTwitterSourceRequest) ProtoMessage()

func (*DeleteQueryTwitterSourceRequest) ProtoReflect

func (*DeleteQueryTwitterSourceRequest) Reset

func (*DeleteQueryTwitterSourceRequest) String

type DeleteQueryTwitterSourceResponse

type DeleteQueryTwitterSourceResponse struct {
	Data   *DeleteQueryTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors               `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteQueryTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use DeleteQueryTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*DeleteQueryTwitterSourceResponse) GetData

func (*DeleteQueryTwitterSourceResponse) GetErrors

func (*DeleteQueryTwitterSourceResponse) ProtoMessage

func (*DeleteQueryTwitterSourceResponse) ProtoMessage()

func (*DeleteQueryTwitterSourceResponse) ProtoReflect

func (*DeleteQueryTwitterSourceResponse) Reset

func (*DeleteQueryTwitterSourceResponse) String

type DeleteUserTwitterSourceData

type DeleteUserTwitterSourceData struct {
	DeletedUserTwitterSourceId string `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DeleteUserTwitterSourceData) Descriptor deprecated

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

Deprecated: Use DeleteUserTwitterSourceData.ProtoReflect.Descriptor instead.

func (*DeleteUserTwitterSourceData) GetDeletedUserTwitterSourceId

func (x *DeleteUserTwitterSourceData) GetDeletedUserTwitterSourceId() string

func (*DeleteUserTwitterSourceData) ProtoMessage

func (*DeleteUserTwitterSourceData) ProtoMessage()

func (*DeleteUserTwitterSourceData) ProtoReflect

func (*DeleteUserTwitterSourceData) Reset

func (x *DeleteUserTwitterSourceData) Reset()

func (*DeleteUserTwitterSourceData) String

func (x *DeleteUserTwitterSourceData) String() string

type DeleteUserTwitterSourceRequest

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

DeleteUserTwitterSourceParameters holds parameters to DeleteUserTwitterSource

func (*DeleteUserTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use DeleteUserTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*DeleteUserTwitterSourceRequest) GetId

func (*DeleteUserTwitterSourceRequest) ProtoMessage

func (*DeleteUserTwitterSourceRequest) ProtoMessage()

func (*DeleteUserTwitterSourceRequest) ProtoReflect

func (*DeleteUserTwitterSourceRequest) Reset

func (x *DeleteUserTwitterSourceRequest) Reset()

func (*DeleteUserTwitterSourceRequest) String

type DeleteUserTwitterSourceResponse

type DeleteUserTwitterSourceResponse struct {
	Data   *DeleteUserTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors              `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteUserTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use DeleteUserTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*DeleteUserTwitterSourceResponse) GetData

func (*DeleteUserTwitterSourceResponse) GetErrors

func (*DeleteUserTwitterSourceResponse) ProtoMessage

func (*DeleteUserTwitterSourceResponse) ProtoMessage()

func (*DeleteUserTwitterSourceResponse) ProtoReflect

func (*DeleteUserTwitterSourceResponse) Reset

func (*DeleteUserTwitterSourceResponse) String

type Feed

type Feed struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Url             string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	CreatedAt       string `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt       string `protobuf:"bytes,4,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	DeletedAt       string `protobuf:"bytes,5,opt,name=deleted_at,json=deletedAt,proto3" json:"deleted_at,omitempty"`
	LastRetrievedAt string `protobuf:"bytes,6,opt,name=last_retrieved_at,json=lastRetrievedAt,proto3" json:"last_retrieved_at,omitempty"`
	FailuresCount   int64  `protobuf:"varint,7,opt,name=failures_count,json=failuresCount,proto3" json:"failures_count,omitempty"`
	// contains filtered or unexported fields
}

func (*Feed) Descriptor deprecated

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

Deprecated: Use Feed.ProtoReflect.Descriptor instead.

func (*Feed) GetCreatedAt

func (x *Feed) GetCreatedAt() string

func (*Feed) GetDeletedAt

func (x *Feed) GetDeletedAt() string

func (*Feed) GetFailuresCount

func (x *Feed) GetFailuresCount() int64

func (*Feed) GetId

func (x *Feed) GetId() string

func (*Feed) GetLastRetrievedAt

func (x *Feed) GetLastRetrievedAt() string

func (*Feed) GetUpdatedAt

func (x *Feed) GetUpdatedAt() string

func (*Feed) GetUrl

func (x *Feed) GetUrl() string

func (*Feed) ProtoMessage

func (*Feed) ProtoMessage()

func (*Feed) ProtoReflect

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

func (*Feed) Reset

func (x *Feed) Reset()

func (*Feed) String

func (x *Feed) String() string

type GetFeedData

type GetFeedData struct {
	Feed *Feed `protobuf:"bytes,1,opt,name=feed,proto3" json:"feed,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeedData) Descriptor deprecated

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

Deprecated: Use GetFeedData.ProtoReflect.Descriptor instead.

func (*GetFeedData) GetFeed

func (x *GetFeedData) GetFeed() *Feed

func (*GetFeedData) ProtoMessage

func (*GetFeedData) ProtoMessage()

func (*GetFeedData) ProtoReflect

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

func (*GetFeedData) Reset

func (x *GetFeedData) Reset()

func (*GetFeedData) String

func (x *GetFeedData) String() string

type GetFeedRequest

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

GetFeedParameters holds parameters to GetFeed

func (*GetFeedRequest) Descriptor deprecated

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

Deprecated: Use GetFeedRequest.ProtoReflect.Descriptor instead.

func (*GetFeedRequest) GetId

func (x *GetFeedRequest) GetId() string

func (*GetFeedRequest) ProtoMessage

func (*GetFeedRequest) ProtoMessage()

func (*GetFeedRequest) ProtoReflect

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

func (*GetFeedRequest) Reset

func (x *GetFeedRequest) Reset()

func (*GetFeedRequest) String

func (x *GetFeedRequest) String() string

type GetFeedResponse

type GetFeedResponse struct {
	Data   *GetFeedData    `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeedResponse) Descriptor deprecated

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

Deprecated: Use GetFeedResponse.ProtoReflect.Descriptor instead.

func (*GetFeedResponse) GetData

func (x *GetFeedResponse) GetData() *GetFeedData

func (*GetFeedResponse) GetErrors

func (x *GetFeedResponse) GetErrors() *ResponseErrors

func (*GetFeedResponse) ProtoMessage

func (*GetFeedResponse) ProtoMessage()

func (*GetFeedResponse) ProtoReflect

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

func (*GetFeedResponse) Reset

func (x *GetFeedResponse) Reset()

func (*GetFeedResponse) String

func (x *GetFeedResponse) String() string

type GetFeedsData

type GetFeedsData struct {
	Feeds []*Feed `protobuf:"bytes,1,rep,name=feeds,proto3" json:"feeds,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeedsData) Descriptor deprecated

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

Deprecated: Use GetFeedsData.ProtoReflect.Descriptor instead.

func (*GetFeedsData) GetFeeds

func (x *GetFeedsData) GetFeeds() []*Feed

func (*GetFeedsData) ProtoMessage

func (*GetFeedsData) ProtoMessage()

func (*GetFeedsData) ProtoReflect

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

func (*GetFeedsData) Reset

func (x *GetFeedsData) Reset()

func (*GetFeedsData) String

func (x *GetFeedsData) String() string

type GetFeedsRequest

type GetFeedsRequest struct {
	First int64  `protobuf:"varint,1,opt,name=first,proto3" json:"first,omitempty"`
	After string `protobuf:"bytes,2,opt,name=after,proto3" json:"after,omitempty"`
	// contains filtered or unexported fields
}

GetFeedsParameters holds parameters to GetFeeds

func (*GetFeedsRequest) Descriptor deprecated

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

Deprecated: Use GetFeedsRequest.ProtoReflect.Descriptor instead.

func (*GetFeedsRequest) GetAfter

func (x *GetFeedsRequest) GetAfter() string

func (*GetFeedsRequest) GetFirst

func (x *GetFeedsRequest) GetFirst() int64

func (*GetFeedsRequest) ProtoMessage

func (*GetFeedsRequest) ProtoMessage()

func (*GetFeedsRequest) ProtoReflect

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

func (*GetFeedsRequest) Reset

func (x *GetFeedsRequest) Reset()

func (*GetFeedsRequest) String

func (x *GetFeedsRequest) String() string

type GetFeedsResponse

type GetFeedsResponse struct {
	Data   *GetFeedsData   `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeedsResponse) Descriptor deprecated

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

Deprecated: Use GetFeedsResponse.ProtoReflect.Descriptor instead.

func (*GetFeedsResponse) GetData

func (x *GetFeedsResponse) GetData() *GetFeedsData

func (*GetFeedsResponse) GetErrors

func (x *GetFeedsResponse) GetErrors() *ResponseErrors

func (*GetFeedsResponse) ProtoMessage

func (*GetFeedsResponse) ProtoMessage()

func (*GetFeedsResponse) ProtoReflect

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

func (*GetFeedsResponse) Reset

func (x *GetFeedsResponse) Reset()

func (*GetFeedsResponse) String

func (x *GetFeedsResponse) String() string

type GetQueryTwitterSourceData

type GetQueryTwitterSourceData struct {
	QueryTwitterSource *QueryTwitterSource `protobuf:"bytes,1,opt,name=query_twitter_source,json=queryTwitterSource,proto3" json:"query_twitter_source,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQueryTwitterSourceData) Descriptor deprecated

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

Deprecated: Use GetQueryTwitterSourceData.ProtoReflect.Descriptor instead.

func (*GetQueryTwitterSourceData) GetQueryTwitterSource

func (x *GetQueryTwitterSourceData) GetQueryTwitterSource() *QueryTwitterSource

func (*GetQueryTwitterSourceData) ProtoMessage

func (*GetQueryTwitterSourceData) ProtoMessage()

func (*GetQueryTwitterSourceData) ProtoReflect

func (*GetQueryTwitterSourceData) Reset

func (x *GetQueryTwitterSourceData) Reset()

func (*GetQueryTwitterSourceData) String

func (x *GetQueryTwitterSourceData) String() string

type GetQueryTwitterSourceRequest

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

GetQueryTwitterSourceParameters holds parameters to GetQueryTwitterSource

func (*GetQueryTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use GetQueryTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*GetQueryTwitterSourceRequest) GetId

func (*GetQueryTwitterSourceRequest) ProtoMessage

func (*GetQueryTwitterSourceRequest) ProtoMessage()

func (*GetQueryTwitterSourceRequest) ProtoReflect

func (*GetQueryTwitterSourceRequest) Reset

func (x *GetQueryTwitterSourceRequest) Reset()

func (*GetQueryTwitterSourceRequest) String

type GetQueryTwitterSourceResponse

type GetQueryTwitterSourceResponse struct {
	Data   *GetQueryTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors            `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQueryTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use GetQueryTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*GetQueryTwitterSourceResponse) GetData

func (*GetQueryTwitterSourceResponse) GetErrors

func (*GetQueryTwitterSourceResponse) ProtoMessage

func (*GetQueryTwitterSourceResponse) ProtoMessage()

func (*GetQueryTwitterSourceResponse) ProtoReflect

func (*GetQueryTwitterSourceResponse) Reset

func (x *GetQueryTwitterSourceResponse) Reset()

func (*GetQueryTwitterSourceResponse) String

type GetQueryTwitterSourcesData

type GetQueryTwitterSourcesData struct {
	QueryTwitterSources []*QueryTwitterSource `protobuf:"bytes,1,rep,name=query_twitter_sources,json=queryTwitterSources,proto3" json:"query_twitter_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQueryTwitterSourcesData) Descriptor deprecated

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

Deprecated: Use GetQueryTwitterSourcesData.ProtoReflect.Descriptor instead.

func (*GetQueryTwitterSourcesData) GetQueryTwitterSources

func (x *GetQueryTwitterSourcesData) GetQueryTwitterSources() []*QueryTwitterSource

func (*GetQueryTwitterSourcesData) ProtoMessage

func (*GetQueryTwitterSourcesData) ProtoMessage()

func (*GetQueryTwitterSourcesData) ProtoReflect

func (*GetQueryTwitterSourcesData) Reset

func (x *GetQueryTwitterSourcesData) Reset()

func (*GetQueryTwitterSourcesData) String

func (x *GetQueryTwitterSourcesData) String() string

type GetQueryTwitterSourcesRequest

type GetQueryTwitterSourcesRequest struct {
	First int64  `protobuf:"varint,1,opt,name=first,proto3" json:"first,omitempty"`
	After string `protobuf:"bytes,2,opt,name=after,proto3" json:"after,omitempty"`
	// contains filtered or unexported fields
}

GetQueryTwitterSourcesParameters holds parameters to GetQueryTwitterSources

func (*GetQueryTwitterSourcesRequest) Descriptor deprecated

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

Deprecated: Use GetQueryTwitterSourcesRequest.ProtoReflect.Descriptor instead.

func (*GetQueryTwitterSourcesRequest) GetAfter

func (x *GetQueryTwitterSourcesRequest) GetAfter() string

func (*GetQueryTwitterSourcesRequest) GetFirst

func (x *GetQueryTwitterSourcesRequest) GetFirst() int64

func (*GetQueryTwitterSourcesRequest) ProtoMessage

func (*GetQueryTwitterSourcesRequest) ProtoMessage()

func (*GetQueryTwitterSourcesRequest) ProtoReflect

func (*GetQueryTwitterSourcesRequest) Reset

func (x *GetQueryTwitterSourcesRequest) Reset()

func (*GetQueryTwitterSourcesRequest) String

type GetQueryTwitterSourcesResponse

type GetQueryTwitterSourcesResponse struct {
	Data   *GetQueryTwitterSourcesData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors             `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQueryTwitterSourcesResponse) Descriptor deprecated

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

Deprecated: Use GetQueryTwitterSourcesResponse.ProtoReflect.Descriptor instead.

func (*GetQueryTwitterSourcesResponse) GetData

func (*GetQueryTwitterSourcesResponse) GetErrors

func (*GetQueryTwitterSourcesResponse) ProtoMessage

func (*GetQueryTwitterSourcesResponse) ProtoMessage()

func (*GetQueryTwitterSourcesResponse) ProtoReflect

func (*GetQueryTwitterSourcesResponse) Reset

func (x *GetQueryTwitterSourcesResponse) Reset()

func (*GetQueryTwitterSourcesResponse) String

type GetUserTwitterSourceData

type GetUserTwitterSourceData struct {
	UserTwitterSource *UserTwitterSource `protobuf:"bytes,1,opt,name=user_twitter_source,json=userTwitterSource,proto3" json:"user_twitter_source,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserTwitterSourceData) Descriptor deprecated

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

Deprecated: Use GetUserTwitterSourceData.ProtoReflect.Descriptor instead.

func (*GetUserTwitterSourceData) GetUserTwitterSource

func (x *GetUserTwitterSourceData) GetUserTwitterSource() *UserTwitterSource

func (*GetUserTwitterSourceData) ProtoMessage

func (*GetUserTwitterSourceData) ProtoMessage()

func (*GetUserTwitterSourceData) ProtoReflect

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

func (*GetUserTwitterSourceData) Reset

func (x *GetUserTwitterSourceData) Reset()

func (*GetUserTwitterSourceData) String

func (x *GetUserTwitterSourceData) String() string

type GetUserTwitterSourceRequest

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

GetUserTwitterSourceParameters holds parameters to GetUserTwitterSource

func (*GetUserTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use GetUserTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*GetUserTwitterSourceRequest) GetId

func (*GetUserTwitterSourceRequest) ProtoMessage

func (*GetUserTwitterSourceRequest) ProtoMessage()

func (*GetUserTwitterSourceRequest) ProtoReflect

func (*GetUserTwitterSourceRequest) Reset

func (x *GetUserTwitterSourceRequest) Reset()

func (*GetUserTwitterSourceRequest) String

func (x *GetUserTwitterSourceRequest) String() string

type GetUserTwitterSourceResponse

type GetUserTwitterSourceResponse struct {
	Data   *GetUserTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors           `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use GetUserTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*GetUserTwitterSourceResponse) GetData

func (*GetUserTwitterSourceResponse) GetErrors

func (*GetUserTwitterSourceResponse) ProtoMessage

func (*GetUserTwitterSourceResponse) ProtoMessage()

func (*GetUserTwitterSourceResponse) ProtoReflect

func (*GetUserTwitterSourceResponse) Reset

func (x *GetUserTwitterSourceResponse) Reset()

func (*GetUserTwitterSourceResponse) String

type GetUserTwitterSourcesData

type GetUserTwitterSourcesData struct {
	UserTwitterSources []*UserTwitterSource `protobuf:"bytes,1,rep,name=user_twitter_sources,json=userTwitterSources,proto3" json:"user_twitter_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserTwitterSourcesData) Descriptor deprecated

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

Deprecated: Use GetUserTwitterSourcesData.ProtoReflect.Descriptor instead.

func (*GetUserTwitterSourcesData) GetUserTwitterSources

func (x *GetUserTwitterSourcesData) GetUserTwitterSources() []*UserTwitterSource

func (*GetUserTwitterSourcesData) ProtoMessage

func (*GetUserTwitterSourcesData) ProtoMessage()

func (*GetUserTwitterSourcesData) ProtoReflect

func (*GetUserTwitterSourcesData) Reset

func (x *GetUserTwitterSourcesData) Reset()

func (*GetUserTwitterSourcesData) String

func (x *GetUserTwitterSourcesData) String() string

type GetUserTwitterSourcesRequest

type GetUserTwitterSourcesRequest struct {
	First int64  `protobuf:"varint,1,opt,name=first,proto3" json:"first,omitempty"`
	After string `protobuf:"bytes,2,opt,name=after,proto3" json:"after,omitempty"`
	// contains filtered or unexported fields
}

GetUserTwitterSourcesParameters holds parameters to GetUserTwitterSources

func (*GetUserTwitterSourcesRequest) Descriptor deprecated

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

Deprecated: Use GetUserTwitterSourcesRequest.ProtoReflect.Descriptor instead.

func (*GetUserTwitterSourcesRequest) GetAfter

func (x *GetUserTwitterSourcesRequest) GetAfter() string

func (*GetUserTwitterSourcesRequest) GetFirst

func (x *GetUserTwitterSourcesRequest) GetFirst() int64

func (*GetUserTwitterSourcesRequest) ProtoMessage

func (*GetUserTwitterSourcesRequest) ProtoMessage()

func (*GetUserTwitterSourcesRequest) ProtoReflect

func (*GetUserTwitterSourcesRequest) Reset

func (x *GetUserTwitterSourcesRequest) Reset()

func (*GetUserTwitterSourcesRequest) String

type GetUserTwitterSourcesResponse

type GetUserTwitterSourcesResponse struct {
	Data   *GetUserTwitterSourcesData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors            `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserTwitterSourcesResponse) Descriptor deprecated

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

Deprecated: Use GetUserTwitterSourcesResponse.ProtoReflect.Descriptor instead.

func (*GetUserTwitterSourcesResponse) GetData

func (*GetUserTwitterSourcesResponse) GetErrors

func (*GetUserTwitterSourcesResponse) ProtoMessage

func (*GetUserTwitterSourcesResponse) ProtoMessage()

func (*GetUserTwitterSourcesResponse) ProtoReflect

func (*GetUserTwitterSourcesResponse) Reset

func (x *GetUserTwitterSourcesResponse) Reset()

func (*GetUserTwitterSourcesResponse) String

type NewFeed

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

func (*NewFeed) Descriptor deprecated

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

Deprecated: Use NewFeed.ProtoReflect.Descriptor instead.

func (*NewFeed) GetUrl

func (x *NewFeed) GetUrl() string

func (*NewFeed) ProtoMessage

func (*NewFeed) ProtoMessage()

func (*NewFeed) ProtoReflect

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

func (*NewFeed) Reset

func (x *NewFeed) Reset()

func (*NewFeed) String

func (x *NewFeed) String() string

type NewFeeds

type NewFeeds struct {
	Feeds []*NewFeed `protobuf:"bytes,1,rep,name=feeds,proto3" json:"feeds,omitempty"`
	// contains filtered or unexported fields
}

func (*NewFeeds) Descriptor deprecated

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

Deprecated: Use NewFeeds.ProtoReflect.Descriptor instead.

func (*NewFeeds) GetFeeds

func (x *NewFeeds) GetFeeds() []*NewFeed

func (*NewFeeds) ProtoMessage

func (*NewFeeds) ProtoMessage()

func (*NewFeeds) ProtoReflect

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

func (*NewFeeds) Reset

func (x *NewFeeds) Reset()

func (*NewFeeds) String

func (x *NewFeeds) String() string

type NewQueryTwitterSource

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

func (*NewQueryTwitterSource) Descriptor deprecated

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

Deprecated: Use NewQueryTwitterSource.ProtoReflect.Descriptor instead.

func (*NewQueryTwitterSource) GetQuery

func (x *NewQueryTwitterSource) GetQuery() string

func (*NewQueryTwitterSource) ProtoMessage

func (*NewQueryTwitterSource) ProtoMessage()

func (*NewQueryTwitterSource) ProtoReflect

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

func (*NewQueryTwitterSource) Reset

func (x *NewQueryTwitterSource) Reset()

func (*NewQueryTwitterSource) String

func (x *NewQueryTwitterSource) String() string

type NewQueryTwitterSources

type NewQueryTwitterSources struct {
	QueryTwitterSources []*NewQueryTwitterSource `protobuf:"bytes,1,rep,name=query_twitter_sources,json=queryTwitterSources,proto3" json:"query_twitter_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*NewQueryTwitterSources) Descriptor deprecated

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

Deprecated: Use NewQueryTwitterSources.ProtoReflect.Descriptor instead.

func (*NewQueryTwitterSources) GetQueryTwitterSources

func (x *NewQueryTwitterSources) GetQueryTwitterSources() []*NewQueryTwitterSource

func (*NewQueryTwitterSources) ProtoMessage

func (*NewQueryTwitterSources) ProtoMessage()

func (*NewQueryTwitterSources) ProtoReflect

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

func (*NewQueryTwitterSources) Reset

func (x *NewQueryTwitterSources) Reset()

func (*NewQueryTwitterSources) String

func (x *NewQueryTwitterSources) String() string

type NewUserTwitterSource

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

func (*NewUserTwitterSource) Descriptor deprecated

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

Deprecated: Use NewUserTwitterSource.ProtoReflect.Descriptor instead.

func (*NewUserTwitterSource) GetUsername

func (x *NewUserTwitterSource) GetUsername() string

func (*NewUserTwitterSource) ProtoMessage

func (*NewUserTwitterSource) ProtoMessage()

func (*NewUserTwitterSource) ProtoReflect

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

func (*NewUserTwitterSource) Reset

func (x *NewUserTwitterSource) Reset()

func (*NewUserTwitterSource) String

func (x *NewUserTwitterSource) String() string

type NewUserTwitterSources

type NewUserTwitterSources struct {
	UserTwitterSources []*NewUserTwitterSource `protobuf:"bytes,1,rep,name=user_twitter_sources,json=userTwitterSources,proto3" json:"user_twitter_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*NewUserTwitterSources) Descriptor deprecated

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

Deprecated: Use NewUserTwitterSources.ProtoReflect.Descriptor instead.

func (*NewUserTwitterSources) GetUserTwitterSources

func (x *NewUserTwitterSources) GetUserTwitterSources() []*NewUserTwitterSource

func (*NewUserTwitterSources) ProtoMessage

func (*NewUserTwitterSources) ProtoMessage()

func (*NewUserTwitterSources) ProtoReflect

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

func (*NewUserTwitterSources) Reset

func (x *NewUserTwitterSources) Reset()

func (*NewUserTwitterSources) String

func (x *NewUserTwitterSources) String() string

type QueryTwitterSource

type QueryTwitterSource struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt       string `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt       string `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Query           string `protobuf:"bytes,4,opt,name=query,proto3" json:"query,omitempty"`
	LastRetrievedAt string `protobuf:"bytes,5,opt,name=last_retrieved_at,json=lastRetrievedAt,proto3" json:"last_retrieved_at,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryTwitterSource) Descriptor deprecated

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

Deprecated: Use QueryTwitterSource.ProtoReflect.Descriptor instead.

func (*QueryTwitterSource) GetCreatedAt

func (x *QueryTwitterSource) GetCreatedAt() string

func (*QueryTwitterSource) GetId

func (x *QueryTwitterSource) GetId() string

func (*QueryTwitterSource) GetLastRetrievedAt

func (x *QueryTwitterSource) GetLastRetrievedAt() string

func (*QueryTwitterSource) GetQuery

func (x *QueryTwitterSource) GetQuery() string

func (*QueryTwitterSource) GetUpdatedAt

func (x *QueryTwitterSource) GetUpdatedAt() string

func (*QueryTwitterSource) ProtoMessage

func (*QueryTwitterSource) ProtoMessage()

func (*QueryTwitterSource) ProtoReflect

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

func (*QueryTwitterSource) Reset

func (x *QueryTwitterSource) Reset()

func (*QueryTwitterSource) String

func (x *QueryTwitterSource) String() string

type ResponseError

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

func (*ResponseError) Descriptor deprecated

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

Deprecated: Use ResponseError.ProtoReflect.Descriptor instead.

func (*ResponseError) GetMessage

func (x *ResponseError) GetMessage() string

func (*ResponseError) ProtoMessage

func (*ResponseError) ProtoMessage()

func (*ResponseError) ProtoReflect

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

func (*ResponseError) Reset

func (x *ResponseError) Reset()

func (*ResponseError) String

func (x *ResponseError) String() string

type ResponseErrors

type ResponseErrors struct {
	Value []*ResponseError `protobuf:"bytes,1,rep,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseErrors) Descriptor deprecated

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

Deprecated: Use ResponseErrors.ProtoReflect.Descriptor instead.

func (*ResponseErrors) GetValue

func (x *ResponseErrors) GetValue() []*ResponseError

func (*ResponseErrors) ProtoMessage

func (*ResponseErrors) ProtoMessage()

func (*ResponseErrors) ProtoReflect

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

func (*ResponseErrors) Reset

func (x *ResponseErrors) Reset()

func (*ResponseErrors) String

func (x *ResponseErrors) String() string

type UnimplementedApiServer

type UnimplementedApiServer struct {
}

UnimplementedApiServer must be embedded to have forward compatible implementations.

func (UnimplementedApiServer) CreateFeed

func (UnimplementedApiServer) CreateFeeds

func (UnimplementedApiServer) DeleteFeed

func (UnimplementedApiServer) GetFeed

func (UnimplementedApiServer) GetFeeds

func (UnimplementedApiServer) UpdateFeed

type UnsafeApiServer

type UnsafeApiServer interface {
	// contains filtered or unexported methods
}

UnsafeApiServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ApiServer will result in compilation errors.

type UpdateFeedData

type UpdateFeedData struct {
	Feed *Feed `protobuf:"bytes,1,opt,name=feed,proto3" json:"feed,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateFeedData) Descriptor deprecated

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

Deprecated: Use UpdateFeedData.ProtoReflect.Descriptor instead.

func (*UpdateFeedData) GetFeed

func (x *UpdateFeedData) GetFeed() *Feed

func (*UpdateFeedData) ProtoMessage

func (*UpdateFeedData) ProtoMessage()

func (*UpdateFeedData) ProtoReflect

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

func (*UpdateFeedData) Reset

func (x *UpdateFeedData) Reset()

func (*UpdateFeedData) String

func (x *UpdateFeedData) String() string

type UpdateFeedRequest

type UpdateFeedRequest struct {
	Id          string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	UpdatedFeed *UpdatedFeed `protobuf:"bytes,2,opt,name=updated_feed,json=updatedFeed,proto3" json:"updated_feed,omitempty"`
	// contains filtered or unexported fields
}

UpdateFeedParameters holds parameters to UpdateFeed

func (*UpdateFeedRequest) Descriptor deprecated

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

Deprecated: Use UpdateFeedRequest.ProtoReflect.Descriptor instead.

func (*UpdateFeedRequest) GetId

func (x *UpdateFeedRequest) GetId() string

func (*UpdateFeedRequest) GetUpdatedFeed

func (x *UpdateFeedRequest) GetUpdatedFeed() *UpdatedFeed

func (*UpdateFeedRequest) ProtoMessage

func (*UpdateFeedRequest) ProtoMessage()

func (*UpdateFeedRequest) ProtoReflect

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

func (*UpdateFeedRequest) Reset

func (x *UpdateFeedRequest) Reset()

func (*UpdateFeedRequest) String

func (x *UpdateFeedRequest) String() string

type UpdateFeedResponse

type UpdateFeedResponse struct {
	Data   *UpdateFeedData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateFeedResponse) Descriptor deprecated

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

Deprecated: Use UpdateFeedResponse.ProtoReflect.Descriptor instead.

func (*UpdateFeedResponse) GetData

func (x *UpdateFeedResponse) GetData() *UpdateFeedData

func (*UpdateFeedResponse) GetErrors

func (x *UpdateFeedResponse) GetErrors() *ResponseErrors

func (*UpdateFeedResponse) ProtoMessage

func (*UpdateFeedResponse) ProtoMessage()

func (*UpdateFeedResponse) ProtoReflect

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

func (*UpdateFeedResponse) Reset

func (x *UpdateFeedResponse) Reset()

func (*UpdateFeedResponse) String

func (x *UpdateFeedResponse) String() string

type UpdateQueryTwitterSourceData

type UpdateQueryTwitterSourceData struct {
	QueryTwitterSource *QueryTwitterSource `protobuf:"bytes,1,opt,name=query_twitter_source,json=queryTwitterSource,proto3" json:"query_twitter_source,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateQueryTwitterSourceData) Descriptor deprecated

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

Deprecated: Use UpdateQueryTwitterSourceData.ProtoReflect.Descriptor instead.

func (*UpdateQueryTwitterSourceData) GetQueryTwitterSource

func (x *UpdateQueryTwitterSourceData) GetQueryTwitterSource() *QueryTwitterSource

func (*UpdateQueryTwitterSourceData) ProtoMessage

func (*UpdateQueryTwitterSourceData) ProtoMessage()

func (*UpdateQueryTwitterSourceData) ProtoReflect

func (*UpdateQueryTwitterSourceData) Reset

func (x *UpdateQueryTwitterSourceData) Reset()

func (*UpdateQueryTwitterSourceData) String

type UpdateQueryTwitterSourceRequest

type UpdateQueryTwitterSourceRequest struct {
	Id                        string                     `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	UpdatedQueryTwitterSource *UpdatedQueryTwitterSource `` /* 140-byte string literal not displayed */
	// contains filtered or unexported fields
}

UpdateQueryTwitterSourceParameters holds parameters to UpdateQueryTwitterSource

func (*UpdateQueryTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use UpdateQueryTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*UpdateQueryTwitterSourceRequest) GetId

func (*UpdateQueryTwitterSourceRequest) GetUpdatedQueryTwitterSource

func (x *UpdateQueryTwitterSourceRequest) GetUpdatedQueryTwitterSource() *UpdatedQueryTwitterSource

func (*UpdateQueryTwitterSourceRequest) ProtoMessage

func (*UpdateQueryTwitterSourceRequest) ProtoMessage()

func (*UpdateQueryTwitterSourceRequest) ProtoReflect

func (*UpdateQueryTwitterSourceRequest) Reset

func (*UpdateQueryTwitterSourceRequest) String

type UpdateQueryTwitterSourceResponse

type UpdateQueryTwitterSourceResponse struct {
	Data   *UpdateQueryTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors               `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateQueryTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use UpdateQueryTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*UpdateQueryTwitterSourceResponse) GetData

func (*UpdateQueryTwitterSourceResponse) GetErrors

func (*UpdateQueryTwitterSourceResponse) ProtoMessage

func (*UpdateQueryTwitterSourceResponse) ProtoMessage()

func (*UpdateQueryTwitterSourceResponse) ProtoReflect

func (*UpdateQueryTwitterSourceResponse) Reset

func (*UpdateQueryTwitterSourceResponse) String

type UpdateUserTwitterSourceData

type UpdateUserTwitterSourceData struct {
	UserTwitterSource *UserTwitterSource `protobuf:"bytes,1,opt,name=user_twitter_source,json=userTwitterSource,proto3" json:"user_twitter_source,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserTwitterSourceData) Descriptor deprecated

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

Deprecated: Use UpdateUserTwitterSourceData.ProtoReflect.Descriptor instead.

func (*UpdateUserTwitterSourceData) GetUserTwitterSource

func (x *UpdateUserTwitterSourceData) GetUserTwitterSource() *UserTwitterSource

func (*UpdateUserTwitterSourceData) ProtoMessage

func (*UpdateUserTwitterSourceData) ProtoMessage()

func (*UpdateUserTwitterSourceData) ProtoReflect

func (*UpdateUserTwitterSourceData) Reset

func (x *UpdateUserTwitterSourceData) Reset()

func (*UpdateUserTwitterSourceData) String

func (x *UpdateUserTwitterSourceData) String() string

type UpdateUserTwitterSourceRequest

type UpdateUserTwitterSourceRequest struct {
	Id                       string                    `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	UpdatedUserTwitterSource *UpdatedUserTwitterSource `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

UpdateUserTwitterSourceParameters holds parameters to UpdateUserTwitterSource

func (*UpdateUserTwitterSourceRequest) Descriptor deprecated

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

Deprecated: Use UpdateUserTwitterSourceRequest.ProtoReflect.Descriptor instead.

func (*UpdateUserTwitterSourceRequest) GetId

func (*UpdateUserTwitterSourceRequest) GetUpdatedUserTwitterSource

func (x *UpdateUserTwitterSourceRequest) GetUpdatedUserTwitterSource() *UpdatedUserTwitterSource

func (*UpdateUserTwitterSourceRequest) ProtoMessage

func (*UpdateUserTwitterSourceRequest) ProtoMessage()

func (*UpdateUserTwitterSourceRequest) ProtoReflect

func (*UpdateUserTwitterSourceRequest) Reset

func (x *UpdateUserTwitterSourceRequest) Reset()

func (*UpdateUserTwitterSourceRequest) String

type UpdateUserTwitterSourceResponse

type UpdateUserTwitterSourceResponse struct {
	Data   *UpdateUserTwitterSourceData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Errors *ResponseErrors              `protobuf:"bytes,2,opt,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserTwitterSourceResponse) Descriptor deprecated

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

Deprecated: Use UpdateUserTwitterSourceResponse.ProtoReflect.Descriptor instead.

func (*UpdateUserTwitterSourceResponse) GetData

func (*UpdateUserTwitterSourceResponse) GetErrors

func (*UpdateUserTwitterSourceResponse) ProtoMessage

func (*UpdateUserTwitterSourceResponse) ProtoMessage()

func (*UpdateUserTwitterSourceResponse) ProtoReflect

func (*UpdateUserTwitterSourceResponse) Reset

func (*UpdateUserTwitterSourceResponse) String

type UpdatedFeed

type UpdatedFeed struct {
	Url             string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	DeletedAt       string `protobuf:"bytes,2,opt,name=deleted_at,json=deletedAt,proto3" json:"deleted_at,omitempty"`
	LastRetrievedAt string `protobuf:"bytes,3,opt,name=last_retrieved_at,json=lastRetrievedAt,proto3" json:"last_retrieved_at,omitempty"`
	FailuresCount   int64  `protobuf:"varint,4,opt,name=failures_count,json=failuresCount,proto3" json:"failures_count,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatedFeed) Descriptor deprecated

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

Deprecated: Use UpdatedFeed.ProtoReflect.Descriptor instead.

func (*UpdatedFeed) GetDeletedAt

func (x *UpdatedFeed) GetDeletedAt() string

func (*UpdatedFeed) GetFailuresCount

func (x *UpdatedFeed) GetFailuresCount() int64

func (*UpdatedFeed) GetLastRetrievedAt

func (x *UpdatedFeed) GetLastRetrievedAt() string

func (*UpdatedFeed) GetUrl

func (x *UpdatedFeed) GetUrl() string

func (*UpdatedFeed) ProtoMessage

func (*UpdatedFeed) ProtoMessage()

func (*UpdatedFeed) ProtoReflect

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

func (*UpdatedFeed) Reset

func (x *UpdatedFeed) Reset()

func (*UpdatedFeed) String

func (x *UpdatedFeed) String() string

type UpdatedQueryTwitterSource

type UpdatedQueryTwitterSource struct {
	Query           string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	LastRetrievedAt string `protobuf:"bytes,2,opt,name=last_retrieved_at,json=lastRetrievedAt,proto3" json:"last_retrieved_at,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatedQueryTwitterSource) Descriptor deprecated

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

Deprecated: Use UpdatedQueryTwitterSource.ProtoReflect.Descriptor instead.

func (*UpdatedQueryTwitterSource) GetLastRetrievedAt

func (x *UpdatedQueryTwitterSource) GetLastRetrievedAt() string

func (*UpdatedQueryTwitterSource) GetQuery

func (x *UpdatedQueryTwitterSource) GetQuery() string

func (*UpdatedQueryTwitterSource) ProtoMessage

func (*UpdatedQueryTwitterSource) ProtoMessage()

func (*UpdatedQueryTwitterSource) ProtoReflect

func (*UpdatedQueryTwitterSource) Reset

func (x *UpdatedQueryTwitterSource) Reset()

func (*UpdatedQueryTwitterSource) String

func (x *UpdatedQueryTwitterSource) String() string

type UpdatedUserTwitterSource

type UpdatedUserTwitterSource struct {
	Username        string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	LastRetrievedAt string `protobuf:"bytes,2,opt,name=last_retrieved_at,json=lastRetrievedAt,proto3" json:"last_retrieved_at,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatedUserTwitterSource) Descriptor deprecated

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

Deprecated: Use UpdatedUserTwitterSource.ProtoReflect.Descriptor instead.

func (*UpdatedUserTwitterSource) GetLastRetrievedAt

func (x *UpdatedUserTwitterSource) GetLastRetrievedAt() string

func (*UpdatedUserTwitterSource) GetUsername

func (x *UpdatedUserTwitterSource) GetUsername() string

func (*UpdatedUserTwitterSource) ProtoMessage

func (*UpdatedUserTwitterSource) ProtoMessage()

func (*UpdatedUserTwitterSource) ProtoReflect

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

func (*UpdatedUserTwitterSource) Reset

func (x *UpdatedUserTwitterSource) Reset()

func (*UpdatedUserTwitterSource) String

func (x *UpdatedUserTwitterSource) String() string

type UserTwitterSource

type UserTwitterSource struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt       string `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt       string `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Username        string `protobuf:"bytes,4,opt,name=username,proto3" json:"username,omitempty"`
	LastRetrievedAt string `protobuf:"bytes,5,opt,name=last_retrieved_at,json=lastRetrievedAt,proto3" json:"last_retrieved_at,omitempty"`
	// contains filtered or unexported fields
}

func (*UserTwitterSource) Descriptor deprecated

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

Deprecated: Use UserTwitterSource.ProtoReflect.Descriptor instead.

func (*UserTwitterSource) GetCreatedAt

func (x *UserTwitterSource) GetCreatedAt() string

func (*UserTwitterSource) GetId

func (x *UserTwitterSource) GetId() string

func (*UserTwitterSource) GetLastRetrievedAt

func (x *UserTwitterSource) GetLastRetrievedAt() string

func (*UserTwitterSource) GetUpdatedAt

func (x *UserTwitterSource) GetUpdatedAt() string

func (*UserTwitterSource) GetUsername

func (x *UserTwitterSource) GetUsername() string

func (*UserTwitterSource) ProtoMessage

func (*UserTwitterSource) ProtoMessage()

func (*UserTwitterSource) ProtoReflect

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

func (*UserTwitterSource) Reset

func (x *UserTwitterSource) Reset()

func (*UserTwitterSource) String

func (x *UserTwitterSource) String() string

Jump to

Keyboard shortcuts

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