bffv1pb

package
v0.0.57 Latest Latest
Warning

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

Go to latest
Published: Feb 21, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ApprovalQueueAction_name = map[int32]string{
		0: "APPROVAL_QUEUE_ACTION_UNSPECIFIED",
		1: "APPROVAL_QUEUE_ACTION_APPROVE",
		2: "APPROVAL_QUEUE_ACTION_REJECT",
	}
	ApprovalQueueAction_value = map[string]int32{
		"APPROVAL_QUEUE_ACTION_UNSPECIFIED": 0,
		"APPROVAL_QUEUE_ACTION_APPROVE":     1,
		"APPROVAL_QUEUE_ACTION_REJECT":      2,
	}
)

Enum value maps for ApprovalQueueAction.

View Source
var (
	ActorStatus_name = map[int32]string{
		0: "ACTOR_STATUS_UNSPECIFIED",
		1: "ACTOR_STATUS_PENDING",
		2: "ACTOR_STATUS_APPROVED",
		3: "ACTOR_STATUS_BANNED",
		4: "ACTOR_STATUS_NONE",
	}
	ActorStatus_value = map[string]int32{
		"ACTOR_STATUS_UNSPECIFIED": 0,
		"ACTOR_STATUS_PENDING":     1,
		"ACTOR_STATUS_APPROVED":    2,
		"ACTOR_STATUS_BANNED":      3,
		"ACTOR_STATUS_NONE":        4,
	}
)

Enum value maps for ActorStatus.

View Source
var File_bff_v1_moderation_service_proto protoreflect.FileDescriptor
View Source
var File_bff_v1_public_service_proto protoreflect.FileDescriptor
View Source
var File_bff_v1_types_proto protoreflect.FileDescriptor
View Source
var File_bff_v1_user_service_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Actor

type Actor struct {

	// did is the decentralized identity of the actor. This is also the UID used
	// for fetching and mutating actors.
	Did string `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
	// is_artist is a flag indicating this account is primarily an artist. It
	// does not currently control any feed placement.
	IsArtist bool `protobuf:"varint,3,opt,name=is_artist,json=isArtist,proto3" json:"is_artist,omitempty"`
	// comment is a short string that is applied to an account when it is added
	// to the system. This will eventually be replaced by a more powerful system.
	Comment string `protobuf:"bytes,4,opt,name=comment,proto3" json:"comment,omitempty"`
	// status indicates the actor's current status.
	Status ActorStatus `protobuf:"varint,5,opt,name=status,proto3,enum=bff.v1.ActorStatus" json:"status,omitempty"`
	// created_at indicates the time that the actor was first added to the bff
	// system - this does not necessarily indicate when they joined bluesky.
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// roles is an array of roles this actor holds in relation to actions on the
	// moderation API.
	Roles []string `protobuf:"bytes,7,rep,name=roles,proto3" json:"roles,omitempty"`
	// held_until is the time until an actor with the PENDING status
	// is ignored in the queue to be processed later, e.g. when the actor doesn’t
	// have an avatar
	HeldUntil *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=held_until,json=heldUntil,proto3" json:"held_until,omitempty"`
	// contains filtered or unexported fields
}

func (*Actor) Descriptor deprecated

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

Deprecated: Use Actor.ProtoReflect.Descriptor instead.

func (*Actor) GetComment

func (x *Actor) GetComment() string

func (*Actor) GetCreatedAt

func (x *Actor) GetCreatedAt() *timestamppb.Timestamp

func (*Actor) GetDid

func (x *Actor) GetDid() string

func (*Actor) GetHeldUntil added in v0.0.38

func (x *Actor) GetHeldUntil() *timestamppb.Timestamp

func (*Actor) GetIsArtist

func (x *Actor) GetIsArtist() bool

func (*Actor) GetRoles added in v0.0.15

func (x *Actor) GetRoles() []string

func (*Actor) GetStatus

func (x *Actor) GetStatus() ActorStatus

func (*Actor) ProtoMessage

func (*Actor) ProtoMessage()

func (*Actor) ProtoReflect

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

func (*Actor) Reset

func (x *Actor) Reset()

func (*Actor) String

func (x *Actor) String() string

type ActorStatus

type ActorStatus int32
const (
	ActorStatus_ACTOR_STATUS_UNSPECIFIED ActorStatus = 0
	ActorStatus_ACTOR_STATUS_PENDING     ActorStatus = 1
	ActorStatus_ACTOR_STATUS_APPROVED    ActorStatus = 2
	ActorStatus_ACTOR_STATUS_BANNED      ActorStatus = 3
	ActorStatus_ACTOR_STATUS_NONE        ActorStatus = 4
)

func (ActorStatus) Descriptor

func (ActorStatus) Enum

func (x ActorStatus) Enum() *ActorStatus

func (ActorStatus) EnumDescriptor deprecated

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

Deprecated: Use ActorStatus.Descriptor instead.

func (ActorStatus) Number

func (x ActorStatus) Number() protoreflect.EnumNumber

func (ActorStatus) String

func (x ActorStatus) String() string

func (ActorStatus) Type

type ApprovalQueueAction

type ApprovalQueueAction int32
const (
	ApprovalQueueAction_APPROVAL_QUEUE_ACTION_UNSPECIFIED ApprovalQueueAction = 0
	ApprovalQueueAction_APPROVAL_QUEUE_ACTION_APPROVE     ApprovalQueueAction = 1
	ApprovalQueueAction_APPROVAL_QUEUE_ACTION_REJECT      ApprovalQueueAction = 2
)

func (ApprovalQueueAction) Descriptor

func (ApprovalQueueAction) Enum

func (ApprovalQueueAction) EnumDescriptor deprecated

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

Deprecated: Use ApprovalQueueAction.Descriptor instead.

func (ApprovalQueueAction) Number

func (ApprovalQueueAction) String

func (x ApprovalQueueAction) String() string

func (ApprovalQueueAction) Type

type AuditEvent added in v0.0.11

type AuditEvent struct {

	// id is a unique identifier of this audit event.
	Id        string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// actor_did is the DID of the actor whose action caused this audit event
	// to be emitted.
	ActorDid string `protobuf:"bytes,3,opt,name=actor_did,json=actorDid,proto3" json:"actor_did,omitempty"`
	// subject_did is the DID of the actor who the action was done to.
	SubjectDid string `protobuf:"bytes,4,opt,name=subject_did,json=subjectDid,proto3" json:"subject_did,omitempty"`
	// subject_record_uri is the optional AT URI of a specific ATProto record
	// that the action was taken against.
	SubjectRecordUri string     `protobuf:"bytes,5,opt,name=subject_record_uri,json=subjectRecordUri,proto3" json:"subject_record_uri,omitempty"`
	Payload          *anypb.Any `protobuf:"bytes,6,opt,name=payload,proto3" json:"payload,omitempty"`
	// contains filtered or unexported fields
}

func (*AuditEvent) Descriptor deprecated added in v0.0.11

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

Deprecated: Use AuditEvent.ProtoReflect.Descriptor instead.

func (*AuditEvent) GetActorDid added in v0.0.11

func (x *AuditEvent) GetActorDid() string

func (*AuditEvent) GetCreatedAt added in v0.0.11

func (x *AuditEvent) GetCreatedAt() *timestamppb.Timestamp

func (*AuditEvent) GetId added in v0.0.11

func (x *AuditEvent) GetId() string

func (*AuditEvent) GetPayload added in v0.0.11

func (x *AuditEvent) GetPayload() *anypb.Any

func (*AuditEvent) GetSubjectDid added in v0.0.11

func (x *AuditEvent) GetSubjectDid() string

func (*AuditEvent) GetSubjectRecordUri added in v0.0.11

func (x *AuditEvent) GetSubjectRecordUri() string

func (*AuditEvent) ProtoMessage added in v0.0.11

func (*AuditEvent) ProtoMessage()

func (*AuditEvent) ProtoReflect added in v0.0.11

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

func (*AuditEvent) Reset added in v0.0.11

func (x *AuditEvent) Reset()

func (*AuditEvent) String added in v0.0.11

func (x *AuditEvent) String() string

type BanActorAuditPayload added in v0.0.13

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

func (*BanActorAuditPayload) Descriptor deprecated added in v0.0.13

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

Deprecated: Use BanActorAuditPayload.ProtoReflect.Descriptor instead.

func (*BanActorAuditPayload) GetReason added in v0.0.13

func (x *BanActorAuditPayload) GetReason() string

func (*BanActorAuditPayload) ProtoMessage added in v0.0.13

func (*BanActorAuditPayload) ProtoMessage()

func (*BanActorAuditPayload) ProtoReflect added in v0.0.13

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

func (*BanActorAuditPayload) Reset added in v0.0.13

func (x *BanActorAuditPayload) Reset()

func (*BanActorAuditPayload) String added in v0.0.13

func (x *BanActorAuditPayload) String() string

type BanActorRequest added in v0.0.13

type BanActorRequest struct {
	ActorDid string `protobuf:"bytes,1,opt,name=actor_did,json=actorDid,proto3" json:"actor_did,omitempty"`
	Reason   string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*BanActorRequest) Descriptor deprecated added in v0.0.13

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

Deprecated: Use BanActorRequest.ProtoReflect.Descriptor instead.

func (*BanActorRequest) GetActorDid added in v0.0.13

func (x *BanActorRequest) GetActorDid() string

func (*BanActorRequest) GetReason added in v0.0.13

func (x *BanActorRequest) GetReason() string

func (*BanActorRequest) ProtoMessage added in v0.0.13

func (*BanActorRequest) ProtoMessage()

func (*BanActorRequest) ProtoReflect added in v0.0.13

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

func (*BanActorRequest) Reset added in v0.0.13

func (x *BanActorRequest) Reset()

func (*BanActorRequest) String added in v0.0.13

func (x *BanActorRequest) String() string

type BanActorResponse added in v0.0.13

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

func (*BanActorResponse) Descriptor deprecated added in v0.0.13

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

Deprecated: Use BanActorResponse.ProtoReflect.Descriptor instead.

func (*BanActorResponse) GetActor added in v0.0.13

func (x *BanActorResponse) GetActor() *Actor

func (*BanActorResponse) ProtoMessage added in v0.0.13

func (*BanActorResponse) ProtoMessage()

func (*BanActorResponse) ProtoReflect added in v0.0.13

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

func (*BanActorResponse) Reset added in v0.0.13

func (x *BanActorResponse) Reset()

func (*BanActorResponse) String added in v0.0.13

func (x *BanActorResponse) String() string

type CommentAuditPayload added in v0.0.11

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

CommentAuditPayload is the payload for the `comment`audit event. This is empty, as the comment is actually held within `AuditEvent`

func (*CommentAuditPayload) Descriptor deprecated added in v0.0.11

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

Deprecated: Use CommentAuditPayload.ProtoReflect.Descriptor instead.

func (*CommentAuditPayload) GetComment added in v0.0.11

func (x *CommentAuditPayload) GetComment() string

func (*CommentAuditPayload) ProtoMessage added in v0.0.11

func (*CommentAuditPayload) ProtoMessage()

func (*CommentAuditPayload) ProtoReflect added in v0.0.11

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

func (*CommentAuditPayload) Reset added in v0.0.11

func (x *CommentAuditPayload) Reset()

func (*CommentAuditPayload) String added in v0.0.11

func (x *CommentAuditPayload) String() string

type CreateActorAuditPayload added in v0.0.13

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

func (*CreateActorAuditPayload) Descriptor deprecated added in v0.0.13

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

Deprecated: Use CreateActorAuditPayload.ProtoReflect.Descriptor instead.

func (*CreateActorAuditPayload) GetReason added in v0.0.13

func (x *CreateActorAuditPayload) GetReason() string

func (*CreateActorAuditPayload) ProtoMessage added in v0.0.13

func (*CreateActorAuditPayload) ProtoMessage()

func (*CreateActorAuditPayload) ProtoReflect added in v0.0.13

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

func (*CreateActorAuditPayload) Reset added in v0.0.13

func (x *CreateActorAuditPayload) Reset()

func (*CreateActorAuditPayload) String added in v0.0.13

func (x *CreateActorAuditPayload) String() string

type CreateActorRequest added in v0.0.13

type CreateActorRequest struct {
	ActorDid string `protobuf:"bytes,1,opt,name=actor_did,json=actorDid,proto3" json:"actor_did,omitempty"`
	Reason   string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateActorRequest) Descriptor deprecated added in v0.0.13

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

Deprecated: Use CreateActorRequest.ProtoReflect.Descriptor instead.

func (*CreateActorRequest) GetActorDid added in v0.0.13

func (x *CreateActorRequest) GetActorDid() string

func (*CreateActorRequest) GetReason added in v0.0.13

func (x *CreateActorRequest) GetReason() string

func (*CreateActorRequest) ProtoMessage added in v0.0.13

func (*CreateActorRequest) ProtoMessage()

func (*CreateActorRequest) ProtoReflect added in v0.0.13

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

func (*CreateActorRequest) Reset added in v0.0.13

func (x *CreateActorRequest) Reset()

func (*CreateActorRequest) String added in v0.0.13

func (x *CreateActorRequest) String() string

type CreateActorResponse added in v0.0.13

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

func (*CreateActorResponse) Descriptor deprecated added in v0.0.13

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

Deprecated: Use CreateActorResponse.ProtoReflect.Descriptor instead.

func (*CreateActorResponse) GetActor added in v0.0.13

func (x *CreateActorResponse) GetActor() *Actor

func (*CreateActorResponse) ProtoMessage added in v0.0.13

func (*CreateActorResponse) ProtoMessage()

func (*CreateActorResponse) ProtoReflect added in v0.0.13

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

func (*CreateActorResponse) Reset added in v0.0.13

func (x *CreateActorResponse) Reset()

func (*CreateActorResponse) String added in v0.0.13

func (x *CreateActorResponse) String() string

type CreateCommentAuditEventRequest added in v0.0.11

type CreateCommentAuditEventRequest struct {
	SubjectDid       string `protobuf:"bytes,1,opt,name=subject_did,json=subjectDid,proto3" json:"subject_did,omitempty"`
	SubjectRecordUri string `protobuf:"bytes,2,opt,name=subject_record_uri,json=subjectRecordUri,proto3" json:"subject_record_uri,omitempty"`
	Comment          string `protobuf:"bytes,3,opt,name=comment,proto3" json:"comment,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCommentAuditEventRequest) Descriptor deprecated added in v0.0.11

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

Deprecated: Use CreateCommentAuditEventRequest.ProtoReflect.Descriptor instead.

func (*CreateCommentAuditEventRequest) GetComment added in v0.0.11

func (x *CreateCommentAuditEventRequest) GetComment() string

func (*CreateCommentAuditEventRequest) GetSubjectDid added in v0.0.11

func (x *CreateCommentAuditEventRequest) GetSubjectDid() string

func (*CreateCommentAuditEventRequest) GetSubjectRecordUri added in v0.0.11

func (x *CreateCommentAuditEventRequest) GetSubjectRecordUri() string

func (*CreateCommentAuditEventRequest) ProtoMessage added in v0.0.11

func (*CreateCommentAuditEventRequest) ProtoMessage()

func (*CreateCommentAuditEventRequest) ProtoReflect added in v0.0.11

func (*CreateCommentAuditEventRequest) Reset added in v0.0.11

func (x *CreateCommentAuditEventRequest) Reset()

func (*CreateCommentAuditEventRequest) String added in v0.0.11

type CreateCommentAuditEventResponse added in v0.0.11

type CreateCommentAuditEventResponse struct {
	AuditEvent *AuditEvent `protobuf:"bytes,1,opt,name=audit_event,json=auditEvent,proto3" json:"audit_event,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCommentAuditEventResponse) Descriptor deprecated added in v0.0.11

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

Deprecated: Use CreateCommentAuditEventResponse.ProtoReflect.Descriptor instead.

func (*CreateCommentAuditEventResponse) GetAuditEvent added in v0.0.11

func (x *CreateCommentAuditEventResponse) GetAuditEvent() *AuditEvent

func (*CreateCommentAuditEventResponse) ProtoMessage added in v0.0.11

func (*CreateCommentAuditEventResponse) ProtoMessage()

func (*CreateCommentAuditEventResponse) ProtoReflect added in v0.0.11

func (*CreateCommentAuditEventResponse) Reset added in v0.0.11

func (*CreateCommentAuditEventResponse) String added in v0.0.11

type Feed added in v0.0.23

type Feed struct {

	// id is the unique identifier of the feed. This is also the rkey it is
	// published under on bluesky.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// link is a link to the feed in the official BlueSky client.
	Link string `protobuf:"bytes,2,opt,name=link,proto3" json:"link,omitempty"`
	// display_name is the short name of the feed shown in the BlueSky client.
	DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// description is a long description of the feed shown in the BlueSky client.
	Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	// priority indicates where to show this feed in BFF UIs, allowing more
	// common feeds to be shown first. Higher priority wins. Negative values
	// indicate the feed should be hidden in the UI.
	Priority int32 `protobuf:"varint,5,opt,name=priority,proto3" json:"priority,omitempty"`
	// contains filtered or unexported fields
}

func (*Feed) Descriptor deprecated added in v0.0.23

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

Deprecated: Use Feed.ProtoReflect.Descriptor instead.

func (*Feed) GetDescription added in v0.0.23

func (x *Feed) GetDescription() string

func (*Feed) GetDisplayName added in v0.0.23

func (x *Feed) GetDisplayName() string

func (*Feed) GetId added in v0.0.23

func (x *Feed) GetId() string
func (x *Feed) GetLink() string

func (*Feed) GetPriority added in v0.0.23

func (x *Feed) GetPriority() int32

func (*Feed) ProtoMessage added in v0.0.23

func (*Feed) ProtoMessage()

func (*Feed) ProtoReflect added in v0.0.23

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

func (*Feed) Reset added in v0.0.23

func (x *Feed) Reset()

func (*Feed) String added in v0.0.23

func (x *Feed) String() string

type ForceApproveActorAuditPayload added in v0.0.14

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

func (*ForceApproveActorAuditPayload) Descriptor deprecated added in v0.0.14

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

Deprecated: Use ForceApproveActorAuditPayload.ProtoReflect.Descriptor instead.

func (*ForceApproveActorAuditPayload) GetReason added in v0.0.14

func (x *ForceApproveActorAuditPayload) GetReason() string

func (*ForceApproveActorAuditPayload) ProtoMessage added in v0.0.14

func (*ForceApproveActorAuditPayload) ProtoMessage()

func (*ForceApproveActorAuditPayload) ProtoReflect added in v0.0.14

func (*ForceApproveActorAuditPayload) Reset added in v0.0.14

func (x *ForceApproveActorAuditPayload) Reset()

func (*ForceApproveActorAuditPayload) String added in v0.0.14

type ForceApproveActorRequest added in v0.0.14

type ForceApproveActorRequest struct {
	ActorDid string `protobuf:"bytes,1,opt,name=actor_did,json=actorDid,proto3" json:"actor_did,omitempty"`
	Reason   string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*ForceApproveActorRequest) Descriptor deprecated added in v0.0.14

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

Deprecated: Use ForceApproveActorRequest.ProtoReflect.Descriptor instead.

func (*ForceApproveActorRequest) GetActorDid added in v0.0.14

func (x *ForceApproveActorRequest) GetActorDid() string

func (*ForceApproveActorRequest) GetReason added in v0.0.14

func (x *ForceApproveActorRequest) GetReason() string

func (*ForceApproveActorRequest) ProtoMessage added in v0.0.14

func (*ForceApproveActorRequest) ProtoMessage()

func (*ForceApproveActorRequest) ProtoReflect added in v0.0.14

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

func (*ForceApproveActorRequest) Reset added in v0.0.14

func (x *ForceApproveActorRequest) Reset()

func (*ForceApproveActorRequest) String added in v0.0.14

func (x *ForceApproveActorRequest) String() string

type ForceApproveActorResponse added in v0.0.14

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

func (*ForceApproveActorResponse) Descriptor deprecated added in v0.0.14

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

Deprecated: Use ForceApproveActorResponse.ProtoReflect.Descriptor instead.

func (*ForceApproveActorResponse) GetActor added in v0.0.14

func (x *ForceApproveActorResponse) GetActor() *Actor

func (*ForceApproveActorResponse) ProtoMessage added in v0.0.14

func (*ForceApproveActorResponse) ProtoMessage()

func (*ForceApproveActorResponse) ProtoReflect added in v0.0.14

func (*ForceApproveActorResponse) Reset added in v0.0.14

func (x *ForceApproveActorResponse) Reset()

func (*ForceApproveActorResponse) String added in v0.0.14

func (x *ForceApproveActorResponse) String() string

type GetActorRequest

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

func (*GetActorRequest) Descriptor deprecated

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

Deprecated: Use GetActorRequest.ProtoReflect.Descriptor instead.

func (*GetActorRequest) GetDid added in v0.0.9

func (x *GetActorRequest) GetDid() string

func (*GetActorRequest) ProtoMessage

func (*GetActorRequest) ProtoMessage()

func (*GetActorRequest) ProtoReflect

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

func (*GetActorRequest) Reset

func (x *GetActorRequest) Reset()

func (*GetActorRequest) String

func (x *GetActorRequest) String() string

type GetActorResponse

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

func (*GetActorResponse) Descriptor deprecated

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

Deprecated: Use GetActorResponse.ProtoReflect.Descriptor instead.

func (*GetActorResponse) GetActor

func (x *GetActorResponse) GetActor() *Actor

func (*GetActorResponse) ProtoMessage

func (*GetActorResponse) ProtoMessage()

func (*GetActorResponse) ProtoReflect

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

func (*GetActorResponse) Reset

func (x *GetActorResponse) Reset()

func (*GetActorResponse) String

func (x *GetActorResponse) String() string

type GetMeRequest added in v0.0.29

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

func (*GetMeRequest) Descriptor deprecated added in v0.0.29

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

Deprecated: Use GetMeRequest.ProtoReflect.Descriptor instead.

func (*GetMeRequest) ProtoMessage added in v0.0.29

func (*GetMeRequest) ProtoMessage()

func (*GetMeRequest) ProtoReflect added in v0.0.29

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

func (*GetMeRequest) Reset added in v0.0.29

func (x *GetMeRequest) Reset()

func (*GetMeRequest) String added in v0.0.29

func (x *GetMeRequest) String() string

type GetMeResponse added in v0.0.29

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

func (*GetMeResponse) Descriptor deprecated added in v0.0.29

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

Deprecated: Use GetMeResponse.ProtoReflect.Descriptor instead.

func (*GetMeResponse) GetActor added in v0.0.29

func (x *GetMeResponse) GetActor() *Actor

func (*GetMeResponse) ProtoMessage added in v0.0.29

func (*GetMeResponse) ProtoMessage()

func (*GetMeResponse) ProtoReflect added in v0.0.29

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

func (*GetMeResponse) Reset added in v0.0.29

func (x *GetMeResponse) Reset()

func (*GetMeResponse) String added in v0.0.29

func (x *GetMeResponse) String() string

type HoldBackPendingActorAuditPayload added in v0.0.38

type HoldBackPendingActorAuditPayload struct {
	HeldUntil *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=held_until,json=heldUntil,proto3" json:"held_until,omitempty"`
	// contains filtered or unexported fields
}

func (*HoldBackPendingActorAuditPayload) Descriptor deprecated added in v0.0.38

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

Deprecated: Use HoldBackPendingActorAuditPayload.ProtoReflect.Descriptor instead.

func (*HoldBackPendingActorAuditPayload) GetHeldUntil added in v0.0.38

func (*HoldBackPendingActorAuditPayload) ProtoMessage added in v0.0.38

func (*HoldBackPendingActorAuditPayload) ProtoMessage()

func (*HoldBackPendingActorAuditPayload) ProtoReflect added in v0.0.38

func (*HoldBackPendingActorAuditPayload) Reset added in v0.0.38

func (*HoldBackPendingActorAuditPayload) String added in v0.0.38

type HoldBackPendingActorRequest added in v0.0.38

type HoldBackPendingActorRequest struct {
	Did      string               `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
	Duration *durationpb.Duration `protobuf:"bytes,2,opt,name=duration,proto3" json:"duration,omitempty"`
	// contains filtered or unexported fields
}

func (*HoldBackPendingActorRequest) Descriptor deprecated added in v0.0.38

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

Deprecated: Use HoldBackPendingActorRequest.ProtoReflect.Descriptor instead.

func (*HoldBackPendingActorRequest) GetDid added in v0.0.38

func (x *HoldBackPendingActorRequest) GetDid() string

func (*HoldBackPendingActorRequest) GetDuration added in v0.0.38

func (*HoldBackPendingActorRequest) ProtoMessage added in v0.0.38

func (*HoldBackPendingActorRequest) ProtoMessage()

func (*HoldBackPendingActorRequest) ProtoReflect added in v0.0.38

func (*HoldBackPendingActorRequest) Reset added in v0.0.38

func (x *HoldBackPendingActorRequest) Reset()

func (*HoldBackPendingActorRequest) String added in v0.0.38

func (x *HoldBackPendingActorRequest) String() string

type HoldBackPendingActorResponse added in v0.0.38

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

func (*HoldBackPendingActorResponse) Descriptor deprecated added in v0.0.38

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

Deprecated: Use HoldBackPendingActorResponse.ProtoReflect.Descriptor instead.

func (*HoldBackPendingActorResponse) ProtoMessage added in v0.0.38

func (*HoldBackPendingActorResponse) ProtoMessage()

func (*HoldBackPendingActorResponse) ProtoReflect added in v0.0.38

func (*HoldBackPendingActorResponse) Reset added in v0.0.38

func (x *HoldBackPendingActorResponse) Reset()

func (*HoldBackPendingActorResponse) String added in v0.0.38

type JoinApprovalQueueRequest added in v0.0.29

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

func (*JoinApprovalQueueRequest) Descriptor deprecated added in v0.0.29

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

Deprecated: Use JoinApprovalQueueRequest.ProtoReflect.Descriptor instead.

func (*JoinApprovalQueueRequest) ProtoMessage added in v0.0.29

func (*JoinApprovalQueueRequest) ProtoMessage()

func (*JoinApprovalQueueRequest) ProtoReflect added in v0.0.29

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

func (*JoinApprovalQueueRequest) Reset added in v0.0.29

func (x *JoinApprovalQueueRequest) Reset()

func (*JoinApprovalQueueRequest) String added in v0.0.29

func (x *JoinApprovalQueueRequest) String() string

type JoinApprovalQueueResponse added in v0.0.29

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

func (*JoinApprovalQueueResponse) Descriptor deprecated added in v0.0.29

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

Deprecated: Use JoinApprovalQueueResponse.ProtoReflect.Descriptor instead.

func (*JoinApprovalQueueResponse) ProtoMessage added in v0.0.29

func (*JoinApprovalQueueResponse) ProtoMessage()

func (*JoinApprovalQueueResponse) ProtoReflect added in v0.0.29

func (*JoinApprovalQueueResponse) Reset added in v0.0.29

func (x *JoinApprovalQueueResponse) Reset()

func (*JoinApprovalQueueResponse) String added in v0.0.29

func (x *JoinApprovalQueueResponse) String() string

type ListActorsRequest

type ListActorsRequest struct {
	Cursor       string      `protobuf:"bytes,1,opt,name=cursor,proto3" json:"cursor,omitempty"`
	Limit        int32       `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	FilterStatus ActorStatus `protobuf:"varint,3,opt,name=filter_status,json=filterStatus,proto3,enum=bff.v1.ActorStatus" json:"filter_status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListActorsRequest) Descriptor deprecated

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

Deprecated: Use ListActorsRequest.ProtoReflect.Descriptor instead.

func (*ListActorsRequest) GetCursor

func (x *ListActorsRequest) GetCursor() string

func (*ListActorsRequest) GetFilterStatus

func (x *ListActorsRequest) GetFilterStatus() ActorStatus

func (*ListActorsRequest) GetLimit

func (x *ListActorsRequest) GetLimit() int32

func (*ListActorsRequest) ProtoMessage

func (*ListActorsRequest) ProtoMessage()

func (*ListActorsRequest) ProtoReflect

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

func (*ListActorsRequest) Reset

func (x *ListActorsRequest) Reset()

func (*ListActorsRequest) String

func (x *ListActorsRequest) String() string

type ListActorsResponse

type ListActorsResponse struct {
	Actors []*Actor `protobuf:"bytes,1,rep,name=actors,proto3" json:"actors,omitempty"`
	Cursor string   `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListActorsResponse) Descriptor deprecated

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

Deprecated: Use ListActorsResponse.ProtoReflect.Descriptor instead.

func (*ListActorsResponse) GetActors

func (x *ListActorsResponse) GetActors() []*Actor

func (*ListActorsResponse) GetCursor

func (x *ListActorsResponse) GetCursor() string

func (*ListActorsResponse) ProtoMessage

func (*ListActorsResponse) ProtoMessage()

func (*ListActorsResponse) ProtoReflect

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

func (*ListActorsResponse) Reset

func (x *ListActorsResponse) Reset()

func (*ListActorsResponse) String

func (x *ListActorsResponse) String() string

type ListAuditEventsRequest added in v0.0.11

type ListAuditEventsRequest struct {
	FilterActorDid         string `protobuf:"bytes,1,opt,name=filter_actor_did,json=filterActorDid,proto3" json:"filter_actor_did,omitempty"`
	FilterSubjectDid       string `protobuf:"bytes,2,opt,name=filter_subject_did,json=filterSubjectDid,proto3" json:"filter_subject_did,omitempty"`
	FilterSubjectRecordUri string `` /* 131-byte string literal not displayed */
	// limit specifies how many audit events to return. If unspecific, this
	// defaults to 100.
	Limit  uint32 `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
	Cursor string `protobuf:"bytes,5,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAuditEventsRequest) Descriptor deprecated added in v0.0.11

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

Deprecated: Use ListAuditEventsRequest.ProtoReflect.Descriptor instead.

func (*ListAuditEventsRequest) GetCursor added in v0.0.14

func (x *ListAuditEventsRequest) GetCursor() string

func (*ListAuditEventsRequest) GetFilterActorDid added in v0.0.13

func (x *ListAuditEventsRequest) GetFilterActorDid() string

func (*ListAuditEventsRequest) GetFilterSubjectDid added in v0.0.13

func (x *ListAuditEventsRequest) GetFilterSubjectDid() string

func (*ListAuditEventsRequest) GetFilterSubjectRecordUri added in v0.0.13

func (x *ListAuditEventsRequest) GetFilterSubjectRecordUri() string

func (*ListAuditEventsRequest) GetLimit added in v0.0.14

func (x *ListAuditEventsRequest) GetLimit() uint32

func (*ListAuditEventsRequest) ProtoMessage added in v0.0.11

func (*ListAuditEventsRequest) ProtoMessage()

func (*ListAuditEventsRequest) ProtoReflect added in v0.0.11

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

func (*ListAuditEventsRequest) Reset added in v0.0.11

func (x *ListAuditEventsRequest) Reset()

func (*ListAuditEventsRequest) String added in v0.0.11

func (x *ListAuditEventsRequest) String() string

type ListAuditEventsResponse added in v0.0.11

type ListAuditEventsResponse struct {
	AuditEvents []*AuditEvent `protobuf:"bytes,1,rep,name=audit_events,json=auditEvents,proto3" json:"audit_events,omitempty"`
	Cursor      string        `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAuditEventsResponse) Descriptor deprecated added in v0.0.11

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

Deprecated: Use ListAuditEventsResponse.ProtoReflect.Descriptor instead.

func (*ListAuditEventsResponse) GetAuditEvents added in v0.0.11

func (x *ListAuditEventsResponse) GetAuditEvents() []*AuditEvent

func (*ListAuditEventsResponse) GetCursor added in v0.0.14

func (x *ListAuditEventsResponse) GetCursor() string

func (*ListAuditEventsResponse) ProtoMessage added in v0.0.11

func (*ListAuditEventsResponse) ProtoMessage()

func (*ListAuditEventsResponse) ProtoReflect added in v0.0.11

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

func (*ListAuditEventsResponse) Reset added in v0.0.11

func (x *ListAuditEventsResponse) Reset()

func (*ListAuditEventsResponse) String added in v0.0.11

func (x *ListAuditEventsResponse) String() string

type ListFeedsRequest added in v0.0.23

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

func (*ListFeedsRequest) Descriptor deprecated added in v0.0.23

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

Deprecated: Use ListFeedsRequest.ProtoReflect.Descriptor instead.

func (*ListFeedsRequest) ProtoMessage added in v0.0.23

func (*ListFeedsRequest) ProtoMessage()

func (*ListFeedsRequest) ProtoReflect added in v0.0.23

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

func (*ListFeedsRequest) Reset added in v0.0.23

func (x *ListFeedsRequest) Reset()

func (*ListFeedsRequest) String added in v0.0.23

func (x *ListFeedsRequest) String() string

type ListFeedsResponse added in v0.0.23

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

func (*ListFeedsResponse) Descriptor deprecated added in v0.0.23

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

Deprecated: Use ListFeedsResponse.ProtoReflect.Descriptor instead.

func (*ListFeedsResponse) GetFeeds added in v0.0.23

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

func (*ListFeedsResponse) ProtoMessage added in v0.0.23

func (*ListFeedsResponse) ProtoMessage()

func (*ListFeedsResponse) ProtoReflect added in v0.0.23

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

func (*ListFeedsResponse) Reset added in v0.0.23

func (x *ListFeedsResponse) Reset()

func (*ListFeedsResponse) String added in v0.0.23

func (x *ListFeedsResponse) String() string

type ListRolesRequest added in v0.0.45

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

func (*ListRolesRequest) Descriptor deprecated added in v0.0.45

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

Deprecated: Use ListRolesRequest.ProtoReflect.Descriptor instead.

func (*ListRolesRequest) ProtoMessage added in v0.0.45

func (*ListRolesRequest) ProtoMessage()

func (*ListRolesRequest) ProtoReflect added in v0.0.45

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

func (*ListRolesRequest) Reset added in v0.0.45

func (x *ListRolesRequest) Reset()

func (*ListRolesRequest) String added in v0.0.45

func (x *ListRolesRequest) String() string

type ListRolesResponse added in v0.0.45

type ListRolesResponse struct {
	Roles map[string]*Role `` /* 151-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ListRolesResponse) Descriptor deprecated added in v0.0.45

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

Deprecated: Use ListRolesResponse.ProtoReflect.Descriptor instead.

func (*ListRolesResponse) GetRoles added in v0.0.45

func (x *ListRolesResponse) GetRoles() map[string]*Role

func (*ListRolesResponse) ProtoMessage added in v0.0.45

func (*ListRolesResponse) ProtoMessage()

func (*ListRolesResponse) ProtoReflect added in v0.0.45

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

func (*ListRolesResponse) Reset added in v0.0.45

func (x *ListRolesResponse) Reset()

func (*ListRolesResponse) String added in v0.0.45

func (x *ListRolesResponse) String() string

type PingRequest

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

func (*PingRequest) Descriptor deprecated

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

Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.

func (*PingRequest) ProtoMessage

func (*PingRequest) ProtoMessage()

func (*PingRequest) ProtoReflect

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

func (*PingRequest) Reset

func (x *PingRequest) Reset()

func (*PingRequest) String

func (x *PingRequest) String() string

type PingResponse

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

func (*PingResponse) Descriptor deprecated

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

Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.

func (*PingResponse) ProtoMessage

func (*PingResponse) ProtoMessage()

func (*PingResponse) ProtoReflect

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

func (*PingResponse) Reset

func (x *PingResponse) Reset()

func (*PingResponse) String

func (x *PingResponse) String() string

type Post

type Post struct {
	Uri       string                 `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	IndexedAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=indexed_at,json=indexedAt,proto3" json:"indexed_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Post) Descriptor deprecated

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

Deprecated: Use Post.ProtoReflect.Descriptor instead.

func (*Post) GetCreatedAt

func (x *Post) GetCreatedAt() *timestamppb.Timestamp

func (*Post) GetIndexedAt

func (x *Post) GetIndexedAt() *timestamppb.Timestamp

func (*Post) GetUri

func (x *Post) GetUri() string

func (*Post) ProtoMessage

func (*Post) ProtoMessage()

func (*Post) ProtoReflect

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

func (*Post) Reset

func (x *Post) Reset()

func (*Post) String

func (x *Post) String() string

type ProcessApprovalQueueAuditPayload added in v0.0.11

type ProcessApprovalQueueAuditPayload struct {
	Action ApprovalQueueAction `protobuf:"varint,1,opt,name=action,proto3,enum=bff.v1.ApprovalQueueAction" json:"action,omitempty"`
	Reason string              `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

ProcessApprovalQueueAuditPayload is the payload for the `process_approval_queue` audit event.

func (*ProcessApprovalQueueAuditPayload) Descriptor deprecated added in v0.0.11

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

Deprecated: Use ProcessApprovalQueueAuditPayload.ProtoReflect.Descriptor instead.

func (*ProcessApprovalQueueAuditPayload) GetAction added in v0.0.11

func (*ProcessApprovalQueueAuditPayload) GetReason added in v0.0.14

func (*ProcessApprovalQueueAuditPayload) ProtoMessage added in v0.0.11

func (*ProcessApprovalQueueAuditPayload) ProtoMessage()

func (*ProcessApprovalQueueAuditPayload) ProtoReflect added in v0.0.11

func (*ProcessApprovalQueueAuditPayload) Reset added in v0.0.11

func (*ProcessApprovalQueueAuditPayload) String added in v0.0.11

type ProcessApprovalQueueRequest

type ProcessApprovalQueueRequest struct {
	Did      string              `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
	Action   ApprovalQueueAction `protobuf:"varint,2,opt,name=action,proto3,enum=bff.v1.ApprovalQueueAction" json:"action,omitempty"`
	IsArtist bool                `protobuf:"varint,3,opt,name=is_artist,json=isArtist,proto3" json:"is_artist,omitempty"`
	// reason is the reason that the actor was approved or rejected. This is
	// currently optional but will become required for rejections eventually.
	Reason string `protobuf:"bytes,4,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessApprovalQueueRequest) Descriptor deprecated

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

Deprecated: Use ProcessApprovalQueueRequest.ProtoReflect.Descriptor instead.

func (*ProcessApprovalQueueRequest) GetAction

func (*ProcessApprovalQueueRequest) GetDid

func (x *ProcessApprovalQueueRequest) GetDid() string

func (*ProcessApprovalQueueRequest) GetIsArtist

func (x *ProcessApprovalQueueRequest) GetIsArtist() bool

func (*ProcessApprovalQueueRequest) GetReason added in v0.0.14

func (x *ProcessApprovalQueueRequest) GetReason() string

func (*ProcessApprovalQueueRequest) ProtoMessage

func (*ProcessApprovalQueueRequest) ProtoMessage()

func (*ProcessApprovalQueueRequest) ProtoReflect

func (*ProcessApprovalQueueRequest) Reset

func (x *ProcessApprovalQueueRequest) Reset()

func (*ProcessApprovalQueueRequest) String

func (x *ProcessApprovalQueueRequest) String() string

type ProcessApprovalQueueResponse

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

func (*ProcessApprovalQueueResponse) Descriptor deprecated

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

Deprecated: Use ProcessApprovalQueueResponse.ProtoReflect.Descriptor instead.

func (*ProcessApprovalQueueResponse) ProtoMessage

func (*ProcessApprovalQueueResponse) ProtoMessage()

func (*ProcessApprovalQueueResponse) ProtoReflect

func (*ProcessApprovalQueueResponse) Reset

func (x *ProcessApprovalQueueResponse) Reset()

func (*ProcessApprovalQueueResponse) String

type Role added in v0.0.45

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

func (*Role) Descriptor deprecated added in v0.0.45

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

Deprecated: Use Role.ProtoReflect.Descriptor instead.

func (*Role) GetPermissions added in v0.0.45

func (x *Role) GetPermissions() []string

func (*Role) ProtoMessage added in v0.0.45

func (*Role) ProtoMessage()

func (*Role) ProtoReflect added in v0.0.45

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

func (*Role) Reset added in v0.0.45

func (x *Role) Reset()

func (*Role) String added in v0.0.45

func (x *Role) String() string

type UnapproveActorAuditPayload added in v0.0.13

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

func (*UnapproveActorAuditPayload) Descriptor deprecated added in v0.0.13

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

Deprecated: Use UnapproveActorAuditPayload.ProtoReflect.Descriptor instead.

func (*UnapproveActorAuditPayload) GetReason added in v0.0.13

func (x *UnapproveActorAuditPayload) GetReason() string

func (*UnapproveActorAuditPayload) ProtoMessage added in v0.0.13

func (*UnapproveActorAuditPayload) ProtoMessage()

func (*UnapproveActorAuditPayload) ProtoReflect added in v0.0.13

func (*UnapproveActorAuditPayload) Reset added in v0.0.13

func (x *UnapproveActorAuditPayload) Reset()

func (*UnapproveActorAuditPayload) String added in v0.0.13

func (x *UnapproveActorAuditPayload) String() string

type UnapproveActorRequest added in v0.0.13

type UnapproveActorRequest struct {
	ActorDid string `protobuf:"bytes,1,opt,name=actor_did,json=actorDid,proto3" json:"actor_did,omitempty"`
	Reason   string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*UnapproveActorRequest) Descriptor deprecated added in v0.0.13

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

Deprecated: Use UnapproveActorRequest.ProtoReflect.Descriptor instead.

func (*UnapproveActorRequest) GetActorDid added in v0.0.13

func (x *UnapproveActorRequest) GetActorDid() string

func (*UnapproveActorRequest) GetReason added in v0.0.13

func (x *UnapproveActorRequest) GetReason() string

func (*UnapproveActorRequest) ProtoMessage added in v0.0.13

func (*UnapproveActorRequest) ProtoMessage()

func (*UnapproveActorRequest) ProtoReflect added in v0.0.13

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

func (*UnapproveActorRequest) Reset added in v0.0.13

func (x *UnapproveActorRequest) Reset()

func (*UnapproveActorRequest) String added in v0.0.13

func (x *UnapproveActorRequest) String() string

type UnapproveActorResponse added in v0.0.13

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

func (*UnapproveActorResponse) Descriptor deprecated added in v0.0.13

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

Deprecated: Use UnapproveActorResponse.ProtoReflect.Descriptor instead.

func (*UnapproveActorResponse) GetActor added in v0.0.13

func (x *UnapproveActorResponse) GetActor() *Actor

func (*UnapproveActorResponse) ProtoMessage added in v0.0.13

func (*UnapproveActorResponse) ProtoMessage()

func (*UnapproveActorResponse) ProtoReflect added in v0.0.13

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

func (*UnapproveActorResponse) Reset added in v0.0.13

func (x *UnapproveActorResponse) Reset()

func (*UnapproveActorResponse) String added in v0.0.13

func (x *UnapproveActorResponse) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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