activitypb

package
v1.9.13 Latest Latest
Warning

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

Go to latest
Published: Sep 24, 2025 License: MIT Imports: 24 Imported by: 1

Documentation

Index

Constants

View Source
const (
	ActivityFeed_GetLatestNotifications_FullMethodName = "/flipcash.activity.v1.ActivityFeed/GetLatestNotifications"
	ActivityFeed_GetPagedNotifications_FullMethodName  = "/flipcash.activity.v1.ActivityFeed/GetPagedNotifications"
	ActivityFeed_GetBatchNotifications_FullMethodName  = "/flipcash.activity.v1.ActivityFeed/GetBatchNotifications"
)

Variables

View Source
var (
	GetLatestNotificationsResponse_Result_name = map[int32]string{
		0: "OK",
		1: "DENIED",
	}
	GetLatestNotificationsResponse_Result_value = map[string]int32{
		"OK":     0,
		"DENIED": 1,
	}
)

Enum value maps for GetLatestNotificationsResponse_Result.

View Source
var (
	GetPagedNotificationsResponse_Result_name = map[int32]string{
		0: "OK",
		1: "DENIED",
	}
	GetPagedNotificationsResponse_Result_value = map[string]int32{
		"OK":     0,
		"DENIED": 1,
	}
)

Enum value maps for GetPagedNotificationsResponse_Result.

View Source
var (
	GetBatchNotificationsResponse_Result_name = map[int32]string{
		0: "OK",
		1: "DENIED",
		2: "NOT_FOUND",
	}
	GetBatchNotificationsResponse_Result_value = map[string]int32{
		"OK":        0,
		"DENIED":    1,
		"NOT_FOUND": 2,
	}
)

Enum value maps for GetBatchNotificationsResponse_Result.

View Source
var (
	ActivityFeedType_name = map[int32]string{
		0: "UNKNOWN",
		1: "TRANSACTION_HISTORY",
	}
	ActivityFeedType_value = map[string]int32{
		"UNKNOWN":             0,
		"TRANSACTION_HISTORY": 1,
	}
)

Enum value maps for ActivityFeedType.

View Source
var (
	NotificationState_name = map[int32]string{
		0: "NOTIFICATION_STATE_UNKNOWN",
		1: "NOTIFICATION_STATE_PENDING",
		2: "NOTIFICATION_STATE_COMPLETED",
	}
	NotificationState_value = map[string]int32{
		"NOTIFICATION_STATE_UNKNOWN":   0,
		"NOTIFICATION_STATE_PENDING":   1,
		"NOTIFICATION_STATE_COMPLETED": 2,
	}
)

Enum value maps for NotificationState.

View Source
var ActivityFeed_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "flipcash.activity.v1.ActivityFeed",
	HandlerType: (*ActivityFeedServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetLatestNotifications",
			Handler:    _ActivityFeed_GetLatestNotifications_Handler,
		},
		{
			MethodName: "GetPagedNotifications",
			Handler:    _ActivityFeed_GetPagedNotifications_Handler,
		},
		{
			MethodName: "GetBatchNotifications",
			Handler:    _ActivityFeed_GetBatchNotifications_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "activity/v1/activity_feed_service.proto",
}

ActivityFeed_ServiceDesc is the grpc.ServiceDesc for ActivityFeed service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_activity_v1_activity_feed_service_proto protoreflect.FileDescriptor
View Source
var File_activity_v1_model_proto protoreflect.FileDescriptor

Functions

func RegisterActivityFeedServer

func RegisterActivityFeedServer(s grpc.ServiceRegistrar, srv ActivityFeedServer)

Types

type ActivityFeedClient

type ActivityFeedClient interface {
	// GetLatestNotifications gets the latest N notifications in a user's
	// activity feed. Results will be ordered by descending timestamp.
	GetLatestNotifications(ctx context.Context, in *GetLatestNotificationsRequest, opts ...grpc.CallOption) (*GetLatestNotificationsResponse, error)
	// GetPagedNotifications gets all notifications using a paging API.
	GetPagedNotifications(ctx context.Context, in *GetPagedNotificationsRequest, opts ...grpc.CallOption) (*GetPagedNotificationsResponse, error)
	// GetBatchNotifications gets a batch of notifications by ID.
	GetBatchNotifications(ctx context.Context, in *GetBatchNotificationsRequest, opts ...grpc.CallOption) (*GetBatchNotificationsResponse, error)
}

ActivityFeedClient is the client API for ActivityFeed 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.

type ActivityFeedServer

type ActivityFeedServer interface {
	// GetLatestNotifications gets the latest N notifications in a user's
	// activity feed. Results will be ordered by descending timestamp.
	GetLatestNotifications(context.Context, *GetLatestNotificationsRequest) (*GetLatestNotificationsResponse, error)
	// GetPagedNotifications gets all notifications using a paging API.
	GetPagedNotifications(context.Context, *GetPagedNotificationsRequest) (*GetPagedNotificationsResponse, error)
	// GetBatchNotifications gets a batch of notifications by ID.
	GetBatchNotifications(context.Context, *GetBatchNotificationsRequest) (*GetBatchNotificationsResponse, error)
	// contains filtered or unexported methods
}

ActivityFeedServer is the server API for ActivityFeed service. All implementations must embed UnimplementedActivityFeedServer for forward compatibility.

type ActivityFeedType

type ActivityFeedType int32

ActivityFeedType enables multiple activity feeds, where notifications may be split across different parts of the app

const (
	ActivityFeedType_UNKNOWN             ActivityFeedType = 0
	ActivityFeedType_TRANSACTION_HISTORY ActivityFeedType = 1 // Activity feed displayed under the Balance tab
)

func (ActivityFeedType) Descriptor

func (ActivityFeedType) Enum

func (ActivityFeedType) EnumDescriptor deprecated

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

Deprecated: Use ActivityFeedType.Descriptor instead.

func (ActivityFeedType) Number

func (ActivityFeedType) String

func (x ActivityFeedType) String() string

func (ActivityFeedType) Type

type DepositedCryptoNotificationMetadata added in v1.9.12

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

func (*DepositedCryptoNotificationMetadata) Descriptor deprecated added in v1.9.12

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

Deprecated: Use DepositedCryptoNotificationMetadata.ProtoReflect.Descriptor instead.

func (*DepositedCryptoNotificationMetadata) ProtoMessage added in v1.9.12

func (*DepositedCryptoNotificationMetadata) ProtoMessage()

func (*DepositedCryptoNotificationMetadata) ProtoReflect added in v1.9.12

func (*DepositedCryptoNotificationMetadata) Reset added in v1.9.12

func (*DepositedCryptoNotificationMetadata) String added in v1.9.12

func (*DepositedCryptoNotificationMetadata) Validate added in v1.9.12

Validate checks the field values on DepositedCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DepositedCryptoNotificationMetadata) ValidateAll added in v1.9.12

func (m *DepositedCryptoNotificationMetadata) ValidateAll() error

ValidateAll checks the field values on DepositedCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DepositedCryptoNotificationMetadataMultiError, or nil if none found.

type DepositedCryptoNotificationMetadataMultiError added in v1.9.12

type DepositedCryptoNotificationMetadataMultiError []error

DepositedCryptoNotificationMetadataMultiError is an error wrapping multiple validation errors returned by DepositedCryptoNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (DepositedCryptoNotificationMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (DepositedCryptoNotificationMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type DepositedCryptoNotificationMetadataValidationError added in v1.9.12

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

DepositedCryptoNotificationMetadataValidationError is the validation error returned by DepositedCryptoNotificationMetadata.Validate if the designated constraints aren't met.

func (DepositedCryptoNotificationMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (DepositedCryptoNotificationMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (DepositedCryptoNotificationMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (DepositedCryptoNotificationMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (DepositedCryptoNotificationMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (DepositedCryptoNotificationMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type DistributedCryptoNotificationMetadata added in v1.9.12

type DistributedCryptoNotificationMetadata struct {

	// Types that are assignable to DistributionMetadata:
	//
	//	*DistributedCryptoNotificationMetadata_Pool
	DistributionMetadata isDistributedCryptoNotificationMetadata_DistributionMetadata `protobuf_oneof:"distribution_metadata"`
	// contains filtered or unexported fields
}

func (*DistributedCryptoNotificationMetadata) Descriptor deprecated added in v1.9.12

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

Deprecated: Use DistributedCryptoNotificationMetadata.ProtoReflect.Descriptor instead.

func (*DistributedCryptoNotificationMetadata) GetDistributionMetadata added in v1.9.12

func (m *DistributedCryptoNotificationMetadata) GetDistributionMetadata() isDistributedCryptoNotificationMetadata_DistributionMetadata

func (*DistributedCryptoNotificationMetadata) GetPool added in v1.9.12

func (*DistributedCryptoNotificationMetadata) ProtoMessage added in v1.9.12

func (*DistributedCryptoNotificationMetadata) ProtoMessage()

func (*DistributedCryptoNotificationMetadata) ProtoReflect added in v1.9.12

func (*DistributedCryptoNotificationMetadata) Reset added in v1.9.12

func (*DistributedCryptoNotificationMetadata) String added in v1.9.12

func (*DistributedCryptoNotificationMetadata) Validate added in v1.9.12

Validate checks the field values on DistributedCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DistributedCryptoNotificationMetadata) ValidateAll added in v1.9.12

ValidateAll checks the field values on DistributedCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DistributedCryptoNotificationMetadataMultiError, or nil if none found.

type DistributedCryptoNotificationMetadataMultiError added in v1.9.12

type DistributedCryptoNotificationMetadataMultiError []error

DistributedCryptoNotificationMetadataMultiError is an error wrapping multiple validation errors returned by DistributedCryptoNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (DistributedCryptoNotificationMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (DistributedCryptoNotificationMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type DistributedCryptoNotificationMetadataValidationError added in v1.9.12

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

DistributedCryptoNotificationMetadataValidationError is the validation error returned by DistributedCryptoNotificationMetadata.Validate if the designated constraints aren't met.

func (DistributedCryptoNotificationMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (DistributedCryptoNotificationMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (DistributedCryptoNotificationMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (DistributedCryptoNotificationMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (DistributedCryptoNotificationMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (DistributedCryptoNotificationMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type DistributedCryptoNotificationMetadata_Pool added in v1.9.12

type DistributedCryptoNotificationMetadata_Pool struct {
	Pool *DistributedCryptoNotificationMetadata_PoolDistributionMetadata `protobuf:"bytes,1,opt,name=pool,proto3,oneof"`
}

type DistributedCryptoNotificationMetadata_PoolDistributionMetadata added in v1.9.12

type DistributedCryptoNotificationMetadata_PoolDistributionMetadata struct {

	// The pool where funds were distributed from
	PoolId *v11.PoolId `protobuf:"bytes,1,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"`
	// The outcome for this pool for the user that indicates the reason for
	// receiving the distribution.
	Outcome v11.UserOutcome `protobuf:"varint,2,opt,name=outcome,proto3,enum=flipcash.pool.v1.UserOutcome" json:"outcome,omitempty"`
	// contains filtered or unexported fields
}

Distribution metadata for betting pools

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) Descriptor deprecated added in v1.9.12

Deprecated: Use DistributedCryptoNotificationMetadata_PoolDistributionMetadata.ProtoReflect.Descriptor instead.

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) GetOutcome added in v1.9.12

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) GetPoolId added in v1.9.12

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) ProtoMessage added in v1.9.12

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) ProtoReflect added in v1.9.12

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) Reset added in v1.9.12

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) String added in v1.9.12

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) Validate added in v1.9.12

Validate checks the field values on DistributedCryptoNotificationMetadata_PoolDistributionMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DistributedCryptoNotificationMetadata_PoolDistributionMetadata) ValidateAll added in v1.9.12

ValidateAll checks the field values on DistributedCryptoNotificationMetadata_PoolDistributionMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DistributedCryptoNotificationMetadata_PoolDistributionMetadataMultiError, or nil if none found.

type DistributedCryptoNotificationMetadata_PoolDistributionMetadataMultiError added in v1.9.12

type DistributedCryptoNotificationMetadata_PoolDistributionMetadataMultiError []error

DistributedCryptoNotificationMetadata_PoolDistributionMetadataMultiError is an error wrapping multiple validation errors returned by DistributedCryptoNotificationMetadata_PoolDistributionMetadata.ValidateAll() if the designated constraints aren't met.

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError added in v1.9.12

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

DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError is the validation error returned by DistributedCryptoNotificationMetadata_PoolDistributionMetadata.Validate if the designated constraints aren't met.

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (DistributedCryptoNotificationMetadata_PoolDistributionMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type GaveCryptoNotificationMetadata added in v1.9.12

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

func (*GaveCryptoNotificationMetadata) Descriptor deprecated added in v1.9.12

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

Deprecated: Use GaveCryptoNotificationMetadata.ProtoReflect.Descriptor instead.

func (*GaveCryptoNotificationMetadata) ProtoMessage added in v1.9.12

func (*GaveCryptoNotificationMetadata) ProtoMessage()

func (*GaveCryptoNotificationMetadata) ProtoReflect added in v1.9.12

func (*GaveCryptoNotificationMetadata) Reset added in v1.9.12

func (x *GaveCryptoNotificationMetadata) Reset()

func (*GaveCryptoNotificationMetadata) String added in v1.9.12

func (*GaveCryptoNotificationMetadata) Validate added in v1.9.12

func (m *GaveCryptoNotificationMetadata) Validate() error

Validate checks the field values on GaveCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GaveCryptoNotificationMetadata) ValidateAll added in v1.9.12

func (m *GaveCryptoNotificationMetadata) ValidateAll() error

ValidateAll checks the field values on GaveCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GaveCryptoNotificationMetadataMultiError, or nil if none found.

type GaveCryptoNotificationMetadataMultiError added in v1.9.12

type GaveCryptoNotificationMetadataMultiError []error

GaveCryptoNotificationMetadataMultiError is an error wrapping multiple validation errors returned by GaveCryptoNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (GaveCryptoNotificationMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (GaveCryptoNotificationMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type GaveCryptoNotificationMetadataValidationError added in v1.9.12

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

GaveCryptoNotificationMetadataValidationError is the validation error returned by GaveCryptoNotificationMetadata.Validate if the designated constraints aren't met.

func (GaveCryptoNotificationMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (GaveCryptoNotificationMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (GaveCryptoNotificationMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (GaveCryptoNotificationMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (GaveCryptoNotificationMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (GaveCryptoNotificationMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type GetBatchNotificationsRequest added in v1.3.0

type GetBatchNotificationsRequest struct {
	Ids  []*NotificationId `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
	Auth *v1.Auth          `protobuf:"bytes,2,opt,name=auth,proto3" json:"auth,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBatchNotificationsRequest) Descriptor deprecated added in v1.3.0

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

Deprecated: Use GetBatchNotificationsRequest.ProtoReflect.Descriptor instead.

func (*GetBatchNotificationsRequest) GetAuth added in v1.3.0

func (x *GetBatchNotificationsRequest) GetAuth() *v1.Auth

func (*GetBatchNotificationsRequest) GetIds added in v1.3.0

func (*GetBatchNotificationsRequest) ProtoMessage added in v1.3.0

func (*GetBatchNotificationsRequest) ProtoMessage()

func (*GetBatchNotificationsRequest) ProtoReflect added in v1.3.0

func (*GetBatchNotificationsRequest) Reset added in v1.3.0

func (x *GetBatchNotificationsRequest) Reset()

func (*GetBatchNotificationsRequest) String added in v1.3.0

func (*GetBatchNotificationsRequest) Validate added in v1.3.0

func (m *GetBatchNotificationsRequest) Validate() error

Validate checks the field values on GetBatchNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetBatchNotificationsRequest) ValidateAll added in v1.3.0

func (m *GetBatchNotificationsRequest) ValidateAll() error

ValidateAll checks the field values on GetBatchNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetBatchNotificationsRequestMultiError, or nil if none found.

type GetBatchNotificationsRequestMultiError added in v1.3.0

type GetBatchNotificationsRequestMultiError []error

GetBatchNotificationsRequestMultiError is an error wrapping multiple validation errors returned by GetBatchNotificationsRequest.ValidateAll() if the designated constraints aren't met.

func (GetBatchNotificationsRequestMultiError) AllErrors added in v1.3.0

AllErrors returns a list of validation violation errors.

func (GetBatchNotificationsRequestMultiError) Error added in v1.3.0

Error returns a concatenation of all the error messages it wraps.

type GetBatchNotificationsRequestValidationError added in v1.3.0

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

GetBatchNotificationsRequestValidationError is the validation error returned by GetBatchNotificationsRequest.Validate if the designated constraints aren't met.

func (GetBatchNotificationsRequestValidationError) Cause added in v1.3.0

Cause function returns cause value.

func (GetBatchNotificationsRequestValidationError) Error added in v1.3.0

Error satisfies the builtin error interface

func (GetBatchNotificationsRequestValidationError) ErrorName added in v1.3.0

ErrorName returns error name.

func (GetBatchNotificationsRequestValidationError) Field added in v1.3.0

Field function returns field value.

func (GetBatchNotificationsRequestValidationError) Key added in v1.3.0

Key function returns key value.

func (GetBatchNotificationsRequestValidationError) Reason added in v1.3.0

Reason function returns reason value.

type GetBatchNotificationsResponse added in v1.3.0

type GetBatchNotificationsResponse struct {
	Result        GetBatchNotificationsResponse_Result `` /* 129-byte string literal not displayed */
	Notifications []*Notification                      `protobuf:"bytes,2,rep,name=notifications,proto3" json:"notifications,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBatchNotificationsResponse) Descriptor deprecated added in v1.3.0

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

Deprecated: Use GetBatchNotificationsResponse.ProtoReflect.Descriptor instead.

func (*GetBatchNotificationsResponse) GetNotifications added in v1.3.0

func (x *GetBatchNotificationsResponse) GetNotifications() []*Notification

func (*GetBatchNotificationsResponse) GetResult added in v1.3.0

func (*GetBatchNotificationsResponse) ProtoMessage added in v1.3.0

func (*GetBatchNotificationsResponse) ProtoMessage()

func (*GetBatchNotificationsResponse) ProtoReflect added in v1.3.0

func (*GetBatchNotificationsResponse) Reset added in v1.3.0

func (x *GetBatchNotificationsResponse) Reset()

func (*GetBatchNotificationsResponse) String added in v1.3.0

func (*GetBatchNotificationsResponse) Validate added in v1.3.0

func (m *GetBatchNotificationsResponse) Validate() error

Validate checks the field values on GetBatchNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetBatchNotificationsResponse) ValidateAll added in v1.3.0

func (m *GetBatchNotificationsResponse) ValidateAll() error

ValidateAll checks the field values on GetBatchNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetBatchNotificationsResponseMultiError, or nil if none found.

type GetBatchNotificationsResponseMultiError added in v1.3.0

type GetBatchNotificationsResponseMultiError []error

GetBatchNotificationsResponseMultiError is an error wrapping multiple validation errors returned by GetBatchNotificationsResponse.ValidateAll() if the designated constraints aren't met.

func (GetBatchNotificationsResponseMultiError) AllErrors added in v1.3.0

AllErrors returns a list of validation violation errors.

func (GetBatchNotificationsResponseMultiError) Error added in v1.3.0

Error returns a concatenation of all the error messages it wraps.

type GetBatchNotificationsResponseValidationError added in v1.3.0

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

GetBatchNotificationsResponseValidationError is the validation error returned by GetBatchNotificationsResponse.Validate if the designated constraints aren't met.

func (GetBatchNotificationsResponseValidationError) Cause added in v1.3.0

Cause function returns cause value.

func (GetBatchNotificationsResponseValidationError) Error added in v1.3.0

Error satisfies the builtin error interface

func (GetBatchNotificationsResponseValidationError) ErrorName added in v1.3.0

ErrorName returns error name.

func (GetBatchNotificationsResponseValidationError) Field added in v1.3.0

Field function returns field value.

func (GetBatchNotificationsResponseValidationError) Key added in v1.3.0

Key function returns key value.

func (GetBatchNotificationsResponseValidationError) Reason added in v1.3.0

Reason function returns reason value.

type GetBatchNotificationsResponse_Result added in v1.3.0

type GetBatchNotificationsResponse_Result int32
const (
	GetBatchNotificationsResponse_OK        GetBatchNotificationsResponse_Result = 0
	GetBatchNotificationsResponse_DENIED    GetBatchNotificationsResponse_Result = 1
	GetBatchNotificationsResponse_NOT_FOUND GetBatchNotificationsResponse_Result = 2
)

func (GetBatchNotificationsResponse_Result) Descriptor added in v1.3.0

func (GetBatchNotificationsResponse_Result) Enum added in v1.3.0

func (GetBatchNotificationsResponse_Result) EnumDescriptor deprecated added in v1.3.0

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

Deprecated: Use GetBatchNotificationsResponse_Result.Descriptor instead.

func (GetBatchNotificationsResponse_Result) Number added in v1.3.0

func (GetBatchNotificationsResponse_Result) String added in v1.3.0

func (GetBatchNotificationsResponse_Result) Type added in v1.3.0

type GetLatestNotificationsRequest

type GetLatestNotificationsRequest struct {

	// The activity feed to fetch notifications from
	Type ActivityFeedType `protobuf:"varint,1,opt,name=type,proto3,enum=flipcash.activity.v1.ActivityFeedType" json:"type,omitempty"`
	// Maximum number of notifications to return. If <= 0, the server default is used
	MaxItems int32    `protobuf:"varint,2,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
	Auth     *v1.Auth `protobuf:"bytes,3,opt,name=auth,proto3" json:"auth,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestNotificationsRequest) Descriptor deprecated

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

Deprecated: Use GetLatestNotificationsRequest.ProtoReflect.Descriptor instead.

func (*GetLatestNotificationsRequest) GetAuth

func (x *GetLatestNotificationsRequest) GetAuth() *v1.Auth

func (*GetLatestNotificationsRequest) GetMaxItems

func (x *GetLatestNotificationsRequest) GetMaxItems() int32

func (*GetLatestNotificationsRequest) GetType

func (*GetLatestNotificationsRequest) ProtoMessage

func (*GetLatestNotificationsRequest) ProtoMessage()

func (*GetLatestNotificationsRequest) ProtoReflect

func (*GetLatestNotificationsRequest) Reset

func (x *GetLatestNotificationsRequest) Reset()

func (*GetLatestNotificationsRequest) String

func (*GetLatestNotificationsRequest) Validate

func (m *GetLatestNotificationsRequest) Validate() error

Validate checks the field values on GetLatestNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetLatestNotificationsRequest) ValidateAll

func (m *GetLatestNotificationsRequest) ValidateAll() error

ValidateAll checks the field values on GetLatestNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetLatestNotificationsRequestMultiError, or nil if none found.

type GetLatestNotificationsRequestMultiError

type GetLatestNotificationsRequestMultiError []error

GetLatestNotificationsRequestMultiError is an error wrapping multiple validation errors returned by GetLatestNotificationsRequest.ValidateAll() if the designated constraints aren't met.

func (GetLatestNotificationsRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetLatestNotificationsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetLatestNotificationsRequestValidationError

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

GetLatestNotificationsRequestValidationError is the validation error returned by GetLatestNotificationsRequest.Validate if the designated constraints aren't met.

func (GetLatestNotificationsRequestValidationError) Cause

Cause function returns cause value.

func (GetLatestNotificationsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetLatestNotificationsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetLatestNotificationsRequestValidationError) Field

Field function returns field value.

func (GetLatestNotificationsRequestValidationError) Key

Key function returns key value.

func (GetLatestNotificationsRequestValidationError) Reason

Reason function returns reason value.

type GetLatestNotificationsResponse

type GetLatestNotificationsResponse struct {
	Result        GetLatestNotificationsResponse_Result `` /* 130-byte string literal not displayed */
	Notifications []*Notification                       `protobuf:"bytes,2,rep,name=notifications,proto3" json:"notifications,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestNotificationsResponse) Descriptor deprecated

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

Deprecated: Use GetLatestNotificationsResponse.ProtoReflect.Descriptor instead.

func (*GetLatestNotificationsResponse) GetNotifications

func (x *GetLatestNotificationsResponse) GetNotifications() []*Notification

func (*GetLatestNotificationsResponse) GetResult

func (*GetLatestNotificationsResponse) ProtoMessage

func (*GetLatestNotificationsResponse) ProtoMessage()

func (*GetLatestNotificationsResponse) ProtoReflect

func (*GetLatestNotificationsResponse) Reset

func (x *GetLatestNotificationsResponse) Reset()

func (*GetLatestNotificationsResponse) String

func (*GetLatestNotificationsResponse) Validate

func (m *GetLatestNotificationsResponse) Validate() error

Validate checks the field values on GetLatestNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetLatestNotificationsResponse) ValidateAll

func (m *GetLatestNotificationsResponse) ValidateAll() error

ValidateAll checks the field values on GetLatestNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetLatestNotificationsResponseMultiError, or nil if none found.

type GetLatestNotificationsResponseMultiError

type GetLatestNotificationsResponseMultiError []error

GetLatestNotificationsResponseMultiError is an error wrapping multiple validation errors returned by GetLatestNotificationsResponse.ValidateAll() if the designated constraints aren't met.

func (GetLatestNotificationsResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetLatestNotificationsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetLatestNotificationsResponseValidationError

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

GetLatestNotificationsResponseValidationError is the validation error returned by GetLatestNotificationsResponse.Validate if the designated constraints aren't met.

func (GetLatestNotificationsResponseValidationError) Cause

Cause function returns cause value.

func (GetLatestNotificationsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetLatestNotificationsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetLatestNotificationsResponseValidationError) Field

Field function returns field value.

func (GetLatestNotificationsResponseValidationError) Key

Key function returns key value.

func (GetLatestNotificationsResponseValidationError) Reason

Reason function returns reason value.

type GetLatestNotificationsResponse_Result

type GetLatestNotificationsResponse_Result int32
const (
	GetLatestNotificationsResponse_OK     GetLatestNotificationsResponse_Result = 0
	GetLatestNotificationsResponse_DENIED GetLatestNotificationsResponse_Result = 1
)

func (GetLatestNotificationsResponse_Result) Descriptor

func (GetLatestNotificationsResponse_Result) Enum

func (GetLatestNotificationsResponse_Result) EnumDescriptor deprecated

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

Deprecated: Use GetLatestNotificationsResponse_Result.Descriptor instead.

func (GetLatestNotificationsResponse_Result) Number

func (GetLatestNotificationsResponse_Result) String

func (GetLatestNotificationsResponse_Result) Type

type GetPagedNotificationsRequest added in v1.2.0

type GetPagedNotificationsRequest struct {

	// The activity feed to fetch notifications from
	Type         ActivityFeedType `protobuf:"varint,1,opt,name=type,proto3,enum=flipcash.activity.v1.ActivityFeedType" json:"type,omitempty"`
	QueryOptions *v1.QueryOptions `protobuf:"bytes,2,opt,name=query_options,json=queryOptions,proto3" json:"query_options,omitempty"`
	Auth         *v1.Auth         `protobuf:"bytes,3,opt,name=auth,proto3" json:"auth,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPagedNotificationsRequest) Descriptor deprecated added in v1.2.0

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

Deprecated: Use GetPagedNotificationsRequest.ProtoReflect.Descriptor instead.

func (*GetPagedNotificationsRequest) GetAuth added in v1.2.0

func (x *GetPagedNotificationsRequest) GetAuth() *v1.Auth

func (*GetPagedNotificationsRequest) GetQueryOptions added in v1.2.0

func (x *GetPagedNotificationsRequest) GetQueryOptions() *v1.QueryOptions

func (*GetPagedNotificationsRequest) GetType added in v1.2.0

func (*GetPagedNotificationsRequest) ProtoMessage added in v1.2.0

func (*GetPagedNotificationsRequest) ProtoMessage()

func (*GetPagedNotificationsRequest) ProtoReflect added in v1.2.0

func (*GetPagedNotificationsRequest) Reset added in v1.2.0

func (x *GetPagedNotificationsRequest) Reset()

func (*GetPagedNotificationsRequest) String added in v1.2.0

func (*GetPagedNotificationsRequest) Validate added in v1.2.0

func (m *GetPagedNotificationsRequest) Validate() error

Validate checks the field values on GetPagedNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetPagedNotificationsRequest) ValidateAll added in v1.2.0

func (m *GetPagedNotificationsRequest) ValidateAll() error

ValidateAll checks the field values on GetPagedNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetPagedNotificationsRequestMultiError, or nil if none found.

type GetPagedNotificationsRequestMultiError added in v1.2.0

type GetPagedNotificationsRequestMultiError []error

GetPagedNotificationsRequestMultiError is an error wrapping multiple validation errors returned by GetPagedNotificationsRequest.ValidateAll() if the designated constraints aren't met.

func (GetPagedNotificationsRequestMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (GetPagedNotificationsRequestMultiError) Error added in v1.2.0

Error returns a concatenation of all the error messages it wraps.

type GetPagedNotificationsRequestValidationError added in v1.2.0

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

GetPagedNotificationsRequestValidationError is the validation error returned by GetPagedNotificationsRequest.Validate if the designated constraints aren't met.

func (GetPagedNotificationsRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (GetPagedNotificationsRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (GetPagedNotificationsRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (GetPagedNotificationsRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (GetPagedNotificationsRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (GetPagedNotificationsRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type GetPagedNotificationsResponse added in v1.2.0

type GetPagedNotificationsResponse struct {
	Result        GetPagedNotificationsResponse_Result `` /* 129-byte string literal not displayed */
	Notifications []*Notification                      `protobuf:"bytes,2,rep,name=notifications,proto3" json:"notifications,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPagedNotificationsResponse) Descriptor deprecated added in v1.2.0

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

Deprecated: Use GetPagedNotificationsResponse.ProtoReflect.Descriptor instead.

func (*GetPagedNotificationsResponse) GetNotifications added in v1.2.0

func (x *GetPagedNotificationsResponse) GetNotifications() []*Notification

func (*GetPagedNotificationsResponse) GetResult added in v1.2.0

func (*GetPagedNotificationsResponse) ProtoMessage added in v1.2.0

func (*GetPagedNotificationsResponse) ProtoMessage()

func (*GetPagedNotificationsResponse) ProtoReflect added in v1.2.0

func (*GetPagedNotificationsResponse) Reset added in v1.2.0

func (x *GetPagedNotificationsResponse) Reset()

func (*GetPagedNotificationsResponse) String added in v1.2.0

func (*GetPagedNotificationsResponse) Validate added in v1.2.0

func (m *GetPagedNotificationsResponse) Validate() error

Validate checks the field values on GetPagedNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetPagedNotificationsResponse) ValidateAll added in v1.2.0

func (m *GetPagedNotificationsResponse) ValidateAll() error

ValidateAll checks the field values on GetPagedNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetPagedNotificationsResponseMultiError, or nil if none found.

type GetPagedNotificationsResponseMultiError added in v1.2.0

type GetPagedNotificationsResponseMultiError []error

GetPagedNotificationsResponseMultiError is an error wrapping multiple validation errors returned by GetPagedNotificationsResponse.ValidateAll() if the designated constraints aren't met.

func (GetPagedNotificationsResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (GetPagedNotificationsResponseMultiError) Error added in v1.2.0

Error returns a concatenation of all the error messages it wraps.

type GetPagedNotificationsResponseValidationError added in v1.2.0

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

GetPagedNotificationsResponseValidationError is the validation error returned by GetPagedNotificationsResponse.Validate if the designated constraints aren't met.

func (GetPagedNotificationsResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (GetPagedNotificationsResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (GetPagedNotificationsResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (GetPagedNotificationsResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (GetPagedNotificationsResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (GetPagedNotificationsResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

type GetPagedNotificationsResponse_Result added in v1.2.0

type GetPagedNotificationsResponse_Result int32
const (
	GetPagedNotificationsResponse_OK     GetPagedNotificationsResponse_Result = 0
	GetPagedNotificationsResponse_DENIED GetPagedNotificationsResponse_Result = 1
)

func (GetPagedNotificationsResponse_Result) Descriptor added in v1.2.0

func (GetPagedNotificationsResponse_Result) Enum added in v1.2.0

func (GetPagedNotificationsResponse_Result) EnumDescriptor deprecated added in v1.2.0

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

Deprecated: Use GetPagedNotificationsResponse_Result.Descriptor instead.

func (GetPagedNotificationsResponse_Result) Number added in v1.2.0

func (GetPagedNotificationsResponse_Result) String added in v1.2.0

func (GetPagedNotificationsResponse_Result) Type added in v1.2.0

type Notification

type Notification struct {

	// The ID of this notification
	Id *NotificationId `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// The localized title text for the notification
	LocalizedText string `protobuf:"bytes,2,opt,name=localized_text,json=localizedText,proto3" json:"localized_text,omitempty"`
	// If a payment applies, the amount that was paid
	PaymentAmount *v1.CryptoPaymentAmount `protobuf:"bytes,3,opt,name=payment_amount,json=paymentAmount,proto3" json:"payment_amount,omitempty"`
	// The timestamp of this notification
	Ts *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=ts,proto3" json:"ts,omitempty"`
	// The state of this notification
	State NotificationState `protobuf:"varint,10,opt,name=state,proto3,enum=flipcash.activity.v1.NotificationState" json:"state,omitempty"`
	// Additional metadata for this notification specific to the notification
	//
	// Types that are assignable to AdditionalMetadata:
	//
	//	*Notification_WelcomeBonus
	//	*Notification_GaveCrypto
	//	*Notification_ReceivedCrypto
	//	*Notification_WithdrewCrypto
	//	*Notification_SentCrypto
	//	*Notification_DepositedCrypto
	//	*Notification_PaidCrypto
	//	*Notification_DistributedCrypto
	AdditionalMetadata isNotification_AdditionalMetadata `protobuf_oneof:"additional_metadata"`
	// contains filtered or unexported fields
}

Notification is a message that is displayed in an activity feed

func (*Notification) Descriptor deprecated

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

Deprecated: Use Notification.ProtoReflect.Descriptor instead.

func (*Notification) GetAdditionalMetadata

func (m *Notification) GetAdditionalMetadata() isNotification_AdditionalMetadata

func (*Notification) GetDepositedCrypto added in v1.9.12

func (x *Notification) GetDepositedCrypto() *DepositedCryptoNotificationMetadata

func (*Notification) GetDistributedCrypto added in v1.9.12

func (x *Notification) GetDistributedCrypto() *DistributedCryptoNotificationMetadata

func (*Notification) GetGaveCrypto added in v1.9.12

func (x *Notification) GetGaveCrypto() *GaveCryptoNotificationMetadata

func (*Notification) GetId

func (x *Notification) GetId() *NotificationId

func (*Notification) GetLocalizedText

func (x *Notification) GetLocalizedText() string

func (*Notification) GetPaidCrypto added in v1.9.12

func (x *Notification) GetPaidCrypto() *PaidCryptoNotificationMetadata

func (*Notification) GetPaymentAmount added in v1.1.1

func (x *Notification) GetPaymentAmount() *v1.CryptoPaymentAmount

func (*Notification) GetReceivedCrypto added in v1.9.12

func (x *Notification) GetReceivedCrypto() *ReceivedCryptoNotificationMetadata

func (*Notification) GetSentCrypto added in v1.9.12

func (x *Notification) GetSentCrypto() *SentCryptoNotificationMetadata

func (*Notification) GetState added in v1.3.0

func (x *Notification) GetState() NotificationState

func (*Notification) GetTs

func (x *Notification) GetTs() *timestamppb.Timestamp

func (*Notification) GetWelcomeBonus

func (x *Notification) GetWelcomeBonus() *WelcomeBonusNotificationMetadata

func (*Notification) GetWithdrewCrypto added in v1.9.12

func (x *Notification) GetWithdrewCrypto() *WithdrewCryptoNotificationMetadata

func (*Notification) ProtoMessage

func (*Notification) ProtoMessage()

func (*Notification) ProtoReflect

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

func (*Notification) Reset

func (x *Notification) Reset()

func (*Notification) String

func (x *Notification) String() string

func (*Notification) Validate

func (m *Notification) Validate() error

Validate checks the field values on Notification with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Notification) ValidateAll

func (m *Notification) ValidateAll() error

ValidateAll checks the field values on Notification with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in NotificationMultiError, or nil if none found.

type NotificationId

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

The ID of the notification

func (*NotificationId) Descriptor deprecated

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

Deprecated: Use NotificationId.ProtoReflect.Descriptor instead.

func (*NotificationId) GetValue

func (x *NotificationId) GetValue() []byte

func (*NotificationId) ProtoMessage

func (*NotificationId) ProtoMessage()

func (*NotificationId) ProtoReflect

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

func (*NotificationId) Reset

func (x *NotificationId) Reset()

func (*NotificationId) String

func (x *NotificationId) String() string

func (*NotificationId) Validate

func (m *NotificationId) Validate() error

Validate checks the field values on NotificationId with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*NotificationId) ValidateAll

func (m *NotificationId) ValidateAll() error

ValidateAll checks the field values on NotificationId with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in NotificationIdMultiError, or nil if none found.

type NotificationIdMultiError

type NotificationIdMultiError []error

NotificationIdMultiError is an error wrapping multiple validation errors returned by NotificationId.ValidateAll() if the designated constraints aren't met.

func (NotificationIdMultiError) AllErrors

func (m NotificationIdMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NotificationIdMultiError) Error

func (m NotificationIdMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type NotificationIdValidationError

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

NotificationIdValidationError is the validation error returned by NotificationId.Validate if the designated constraints aren't met.

func (NotificationIdValidationError) Cause

Cause function returns cause value.

func (NotificationIdValidationError) Error

Error satisfies the builtin error interface

func (NotificationIdValidationError) ErrorName

func (e NotificationIdValidationError) ErrorName() string

ErrorName returns error name.

func (NotificationIdValidationError) Field

Field function returns field value.

func (NotificationIdValidationError) Key

Key function returns key value.

func (NotificationIdValidationError) Reason

Reason function returns reason value.

type NotificationMultiError

type NotificationMultiError []error

NotificationMultiError is an error wrapping multiple validation errors returned by Notification.ValidateAll() if the designated constraints aren't met.

func (NotificationMultiError) AllErrors

func (m NotificationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NotificationMultiError) Error

func (m NotificationMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type NotificationState added in v1.3.0

type NotificationState int32

NotificationState determines the mutability of a notification, and whether client should attempt to refetch state.

const (
	NotificationState_NOTIFICATION_STATE_UNKNOWN NotificationState = 0
	// Notification state will change based on some app action in the future
	NotificationState_NOTIFICATION_STATE_PENDING NotificationState = 1
	// Notification state will not change
	NotificationState_NOTIFICATION_STATE_COMPLETED NotificationState = 2
)

func (NotificationState) Descriptor added in v1.3.0

func (NotificationState) Enum added in v1.3.0

func (NotificationState) EnumDescriptor deprecated added in v1.3.0

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

Deprecated: Use NotificationState.Descriptor instead.

func (NotificationState) Number added in v1.3.0

func (NotificationState) String added in v1.3.0

func (x NotificationState) String() string

func (NotificationState) Type added in v1.3.0

type NotificationValidationError

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

NotificationValidationError is the validation error returned by Notification.Validate if the designated constraints aren't met.

func (NotificationValidationError) Cause

Cause function returns cause value.

func (NotificationValidationError) Error

Error satisfies the builtin error interface

func (NotificationValidationError) ErrorName

func (e NotificationValidationError) ErrorName() string

ErrorName returns error name.

func (NotificationValidationError) Field

Field function returns field value.

func (NotificationValidationError) Key

Key function returns key value.

func (NotificationValidationError) Reason

Reason function returns reason value.

type Notification_DepositedCrypto added in v1.9.12

type Notification_DepositedCrypto struct {
	DepositedCrypto *DepositedCryptoNotificationMetadata `protobuf:"bytes,11,opt,name=deposited_crypto,json=depositedCrypto,proto3,oneof"`
}

type Notification_DistributedCrypto added in v1.9.12

type Notification_DistributedCrypto struct {
	DistributedCrypto *DistributedCryptoNotificationMetadata `protobuf:"bytes,13,opt,name=distributed_crypto,json=distributedCrypto,proto3,oneof"`
}

type Notification_GaveCrypto added in v1.9.12

type Notification_GaveCrypto struct {
	GaveCrypto *GaveCryptoNotificationMetadata `protobuf:"bytes,6,opt,name=gave_crypto,json=gaveCrypto,proto3,oneof"`
}

type Notification_PaidCrypto added in v1.9.12

type Notification_PaidCrypto struct {
	PaidCrypto *PaidCryptoNotificationMetadata `protobuf:"bytes,12,opt,name=paid_crypto,json=paidCrypto,proto3,oneof"`
}

type Notification_ReceivedCrypto added in v1.9.12

type Notification_ReceivedCrypto struct {
	ReceivedCrypto *ReceivedCryptoNotificationMetadata `protobuf:"bytes,7,opt,name=received_crypto,json=receivedCrypto,proto3,oneof"`
}

type Notification_SentCrypto added in v1.9.12

type Notification_SentCrypto struct {
	SentCrypto *SentCryptoNotificationMetadata `protobuf:"bytes,9,opt,name=sent_crypto,json=sentCrypto,proto3,oneof"`
}

type Notification_WelcomeBonus

type Notification_WelcomeBonus struct {
	WelcomeBonus *WelcomeBonusNotificationMetadata `protobuf:"bytes,5,opt,name=welcome_bonus,json=welcomeBonus,proto3,oneof"`
}

type Notification_WithdrewCrypto added in v1.9.12

type Notification_WithdrewCrypto struct {
	WithdrewCrypto *WithdrewCryptoNotificationMetadata `protobuf:"bytes,8,opt,name=withdrew_crypto,json=withdrewCrypto,proto3,oneof"`
}

type PaidCryptoNotificationMetadata added in v1.9.12

type PaidCryptoNotificationMetadata struct {

	// Types that are assignable to PaymentMetadata:
	//
	//	*PaidCryptoNotificationMetadata_Pool
	PaymentMetadata isPaidCryptoNotificationMetadata_PaymentMetadata `protobuf_oneof:"payment_metadata"`
	// contains filtered or unexported fields
}

func (*PaidCryptoNotificationMetadata) Descriptor deprecated added in v1.9.12

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

Deprecated: Use PaidCryptoNotificationMetadata.ProtoReflect.Descriptor instead.

func (*PaidCryptoNotificationMetadata) GetPaymentMetadata added in v1.9.12

func (m *PaidCryptoNotificationMetadata) GetPaymentMetadata() isPaidCryptoNotificationMetadata_PaymentMetadata

func (*PaidCryptoNotificationMetadata) GetPool added in v1.9.12

func (*PaidCryptoNotificationMetadata) ProtoMessage added in v1.9.12

func (*PaidCryptoNotificationMetadata) ProtoMessage()

func (*PaidCryptoNotificationMetadata) ProtoReflect added in v1.9.12

func (*PaidCryptoNotificationMetadata) Reset added in v1.9.12

func (x *PaidCryptoNotificationMetadata) Reset()

func (*PaidCryptoNotificationMetadata) String added in v1.9.12

func (*PaidCryptoNotificationMetadata) Validate added in v1.9.12

func (m *PaidCryptoNotificationMetadata) Validate() error

Validate checks the field values on PaidCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaidCryptoNotificationMetadata) ValidateAll added in v1.9.12

func (m *PaidCryptoNotificationMetadata) ValidateAll() error

ValidateAll checks the field values on PaidCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaidCryptoNotificationMetadataMultiError, or nil if none found.

type PaidCryptoNotificationMetadataMultiError added in v1.9.12

type PaidCryptoNotificationMetadataMultiError []error

PaidCryptoNotificationMetadataMultiError is an error wrapping multiple validation errors returned by PaidCryptoNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (PaidCryptoNotificationMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (PaidCryptoNotificationMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type PaidCryptoNotificationMetadataValidationError added in v1.9.12

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

PaidCryptoNotificationMetadataValidationError is the validation error returned by PaidCryptoNotificationMetadata.Validate if the designated constraints aren't met.

func (PaidCryptoNotificationMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (PaidCryptoNotificationMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (PaidCryptoNotificationMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (PaidCryptoNotificationMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (PaidCryptoNotificationMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (PaidCryptoNotificationMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type PaidCryptoNotificationMetadata_Pool added in v1.9.12

type PaidCryptoNotificationMetadata_Pool struct {
	Pool *PaidCryptoNotificationMetadata_PoolPaymentMetadata `protobuf:"bytes,1,opt,name=pool,proto3,oneof"`
}

type PaidCryptoNotificationMetadata_PoolPaymentMetadata added in v1.9.12

type PaidCryptoNotificationMetadata_PoolPaymentMetadata struct {

	// The pool that was entered for this payment
	PoolId *v11.PoolId `protobuf:"bytes,1,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"`
	// contains filtered or unexported fields
}

Payment metadata for betting pools

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) Descriptor deprecated added in v1.9.12

Deprecated: Use PaidCryptoNotificationMetadata_PoolPaymentMetadata.ProtoReflect.Descriptor instead.

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) GetPoolId added in v1.9.12

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) ProtoMessage added in v1.9.12

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) ProtoReflect added in v1.9.12

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) Reset added in v1.9.12

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) String added in v1.9.12

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) Validate added in v1.9.12

Validate checks the field values on PaidCryptoNotificationMetadata_PoolPaymentMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaidCryptoNotificationMetadata_PoolPaymentMetadata) ValidateAll added in v1.9.12

ValidateAll checks the field values on PaidCryptoNotificationMetadata_PoolPaymentMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaidCryptoNotificationMetadata_PoolPaymentMetadataMultiError, or nil if none found.

type PaidCryptoNotificationMetadata_PoolPaymentMetadataMultiError added in v1.9.12

type PaidCryptoNotificationMetadata_PoolPaymentMetadataMultiError []error

PaidCryptoNotificationMetadata_PoolPaymentMetadataMultiError is an error wrapping multiple validation errors returned by PaidCryptoNotificationMetadata_PoolPaymentMetadata.ValidateAll() if the designated constraints aren't met.

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError added in v1.9.12

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

PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError is the validation error returned by PaidCryptoNotificationMetadata_PoolPaymentMetadata.Validate if the designated constraints aren't met.

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (PaidCryptoNotificationMetadata_PoolPaymentMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type ReceivedCryptoNotificationMetadata added in v1.9.12

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

func (*ReceivedCryptoNotificationMetadata) Descriptor deprecated added in v1.9.12

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

Deprecated: Use ReceivedCryptoNotificationMetadata.ProtoReflect.Descriptor instead.

func (*ReceivedCryptoNotificationMetadata) ProtoMessage added in v1.9.12

func (*ReceivedCryptoNotificationMetadata) ProtoMessage()

func (*ReceivedCryptoNotificationMetadata) ProtoReflect added in v1.9.12

func (*ReceivedCryptoNotificationMetadata) Reset added in v1.9.12

func (*ReceivedCryptoNotificationMetadata) String added in v1.9.12

func (*ReceivedCryptoNotificationMetadata) Validate added in v1.9.12

Validate checks the field values on ReceivedCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReceivedCryptoNotificationMetadata) ValidateAll added in v1.9.12

func (m *ReceivedCryptoNotificationMetadata) ValidateAll() error

ValidateAll checks the field values on ReceivedCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReceivedCryptoNotificationMetadataMultiError, or nil if none found.

type ReceivedCryptoNotificationMetadataMultiError added in v1.9.12

type ReceivedCryptoNotificationMetadataMultiError []error

ReceivedCryptoNotificationMetadataMultiError is an error wrapping multiple validation errors returned by ReceivedCryptoNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (ReceivedCryptoNotificationMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (ReceivedCryptoNotificationMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type ReceivedCryptoNotificationMetadataValidationError added in v1.9.12

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

ReceivedCryptoNotificationMetadataValidationError is the validation error returned by ReceivedCryptoNotificationMetadata.Validate if the designated constraints aren't met.

func (ReceivedCryptoNotificationMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (ReceivedCryptoNotificationMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (ReceivedCryptoNotificationMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (ReceivedCryptoNotificationMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (ReceivedCryptoNotificationMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (ReceivedCryptoNotificationMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type SentCryptoNotificationMetadata added in v1.9.12

type SentCryptoNotificationMetadata struct {

	// The vault of the gift card account that was created for the cash link
	Vault *v1.PublicKey `protobuf:"bytes,1,opt,name=vault,proto3" json:"vault,omitempty"`
	// Whether the cancel action can be initiated by the user
	CanInitiateCancelAction bool `` /* 135-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SentCryptoNotificationMetadata) Descriptor deprecated added in v1.9.12

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

Deprecated: Use SentCryptoNotificationMetadata.ProtoReflect.Descriptor instead.

func (*SentCryptoNotificationMetadata) GetCanInitiateCancelAction added in v1.9.12

func (x *SentCryptoNotificationMetadata) GetCanInitiateCancelAction() bool

func (*SentCryptoNotificationMetadata) GetVault added in v1.9.12

func (*SentCryptoNotificationMetadata) ProtoMessage added in v1.9.12

func (*SentCryptoNotificationMetadata) ProtoMessage()

func (*SentCryptoNotificationMetadata) ProtoReflect added in v1.9.12

func (*SentCryptoNotificationMetadata) Reset added in v1.9.12

func (x *SentCryptoNotificationMetadata) Reset()

func (*SentCryptoNotificationMetadata) String added in v1.9.12

func (*SentCryptoNotificationMetadata) Validate added in v1.9.12

func (m *SentCryptoNotificationMetadata) Validate() error

Validate checks the field values on SentCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SentCryptoNotificationMetadata) ValidateAll added in v1.9.12

func (m *SentCryptoNotificationMetadata) ValidateAll() error

ValidateAll checks the field values on SentCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SentCryptoNotificationMetadataMultiError, or nil if none found.

type SentCryptoNotificationMetadataMultiError added in v1.9.12

type SentCryptoNotificationMetadataMultiError []error

SentCryptoNotificationMetadataMultiError is an error wrapping multiple validation errors returned by SentCryptoNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (SentCryptoNotificationMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (SentCryptoNotificationMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type SentCryptoNotificationMetadataValidationError added in v1.9.12

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

SentCryptoNotificationMetadataValidationError is the validation error returned by SentCryptoNotificationMetadata.Validate if the designated constraints aren't met.

func (SentCryptoNotificationMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (SentCryptoNotificationMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (SentCryptoNotificationMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (SentCryptoNotificationMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (SentCryptoNotificationMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (SentCryptoNotificationMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

type UnimplementedActivityFeedServer

type UnimplementedActivityFeedServer struct{}

UnimplementedActivityFeedServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedActivityFeedServer) GetBatchNotifications added in v1.3.0

func (UnimplementedActivityFeedServer) GetPagedNotifications added in v1.2.0

type UnsafeActivityFeedServer

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

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

type WelcomeBonusNotificationMetadata

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

func (*WelcomeBonusNotificationMetadata) Descriptor deprecated

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

Deprecated: Use WelcomeBonusNotificationMetadata.ProtoReflect.Descriptor instead.

func (*WelcomeBonusNotificationMetadata) ProtoMessage

func (*WelcomeBonusNotificationMetadata) ProtoMessage()

func (*WelcomeBonusNotificationMetadata) ProtoReflect

func (*WelcomeBonusNotificationMetadata) Reset

func (*WelcomeBonusNotificationMetadata) String

func (*WelcomeBonusNotificationMetadata) Validate

Validate checks the field values on WelcomeBonusNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*WelcomeBonusNotificationMetadata) ValidateAll

func (m *WelcomeBonusNotificationMetadata) ValidateAll() error

ValidateAll checks the field values on WelcomeBonusNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in WelcomeBonusNotificationMetadataMultiError, or nil if none found.

type WelcomeBonusNotificationMetadataMultiError

type WelcomeBonusNotificationMetadataMultiError []error

WelcomeBonusNotificationMetadataMultiError is an error wrapping multiple validation errors returned by WelcomeBonusNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (WelcomeBonusNotificationMetadataMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (WelcomeBonusNotificationMetadataMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type WelcomeBonusNotificationMetadataValidationError

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

WelcomeBonusNotificationMetadataValidationError is the validation error returned by WelcomeBonusNotificationMetadata.Validate if the designated constraints aren't met.

func (WelcomeBonusNotificationMetadataValidationError) Cause

Cause function returns cause value.

func (WelcomeBonusNotificationMetadataValidationError) Error

Error satisfies the builtin error interface

func (WelcomeBonusNotificationMetadataValidationError) ErrorName

ErrorName returns error name.

func (WelcomeBonusNotificationMetadataValidationError) Field

Field function returns field value.

func (WelcomeBonusNotificationMetadataValidationError) Key

Key function returns key value.

func (WelcomeBonusNotificationMetadataValidationError) Reason

Reason function returns reason value.

type WithdrewCryptoNotificationMetadata added in v1.9.12

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

func (*WithdrewCryptoNotificationMetadata) Descriptor deprecated added in v1.9.12

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

Deprecated: Use WithdrewCryptoNotificationMetadata.ProtoReflect.Descriptor instead.

func (*WithdrewCryptoNotificationMetadata) ProtoMessage added in v1.9.12

func (*WithdrewCryptoNotificationMetadata) ProtoMessage()

func (*WithdrewCryptoNotificationMetadata) ProtoReflect added in v1.9.12

func (*WithdrewCryptoNotificationMetadata) Reset added in v1.9.12

func (*WithdrewCryptoNotificationMetadata) String added in v1.9.12

func (*WithdrewCryptoNotificationMetadata) Validate added in v1.9.12

Validate checks the field values on WithdrewCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*WithdrewCryptoNotificationMetadata) ValidateAll added in v1.9.12

func (m *WithdrewCryptoNotificationMetadata) ValidateAll() error

ValidateAll checks the field values on WithdrewCryptoNotificationMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in WithdrewCryptoNotificationMetadataMultiError, or nil if none found.

type WithdrewCryptoNotificationMetadataMultiError added in v1.9.12

type WithdrewCryptoNotificationMetadataMultiError []error

WithdrewCryptoNotificationMetadataMultiError is an error wrapping multiple validation errors returned by WithdrewCryptoNotificationMetadata.ValidateAll() if the designated constraints aren't met.

func (WithdrewCryptoNotificationMetadataMultiError) AllErrors added in v1.9.12

AllErrors returns a list of validation violation errors.

func (WithdrewCryptoNotificationMetadataMultiError) Error added in v1.9.12

Error returns a concatenation of all the error messages it wraps.

type WithdrewCryptoNotificationMetadataValidationError added in v1.9.12

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

WithdrewCryptoNotificationMetadataValidationError is the validation error returned by WithdrewCryptoNotificationMetadata.Validate if the designated constraints aren't met.

func (WithdrewCryptoNotificationMetadataValidationError) Cause added in v1.9.12

Cause function returns cause value.

func (WithdrewCryptoNotificationMetadataValidationError) Error added in v1.9.12

Error satisfies the builtin error interface

func (WithdrewCryptoNotificationMetadataValidationError) ErrorName added in v1.9.12

ErrorName returns error name.

func (WithdrewCryptoNotificationMetadataValidationError) Field added in v1.9.12

Field function returns field value.

func (WithdrewCryptoNotificationMetadataValidationError) Key added in v1.9.12

Key function returns key value.

func (WithdrewCryptoNotificationMetadataValidationError) Reason added in v1.9.12

Reason function returns reason value.

Jump to

Keyboard shortcuts

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