Documentation ¶
Index ¶
- Variables
- func RegisterInteractionEventGrpcServiceServer(s grpc.ServiceRegistrar, srv InteractionEventGrpcServiceServer)
- type Contact
- type InteractionEventGrpcServiceClient
- type InteractionEventGrpcServiceServer
- type InteractionEventIdGrpcResponse
- func (*InteractionEventIdGrpcResponse) Descriptor() ([]byte, []int)deprecated
- func (x *InteractionEventIdGrpcResponse) GetId() string
- func (*InteractionEventIdGrpcResponse) ProtoMessage()
- func (x *InteractionEventIdGrpcResponse) ProtoReflect() protoreflect.Message
- func (x *InteractionEventIdGrpcResponse) Reset()
- func (x *InteractionEventIdGrpcResponse) String() string
- type Organization
- type Participant
- func (*Participant) Descriptor() ([]byte, []int)deprecated
- func (x *Participant) GetContact() *Contact
- func (x *Participant) GetId() string
- func (x *Participant) GetOrganization() *Organization
- func (m *Participant) GetParticipantType() isParticipant_ParticipantType
- func (x *Participant) GetUser() *User
- func (*Participant) ProtoMessage()
- func (x *Participant) ProtoReflect() protoreflect.Message
- func (x *Participant) Reset()
- func (x *Participant) String() string
- type Participant_Contact
- type Participant_Organization
- type Participant_User
- type Receiver
- type RequestGenerateActionItemsGrpcRequest
- func (*RequestGenerateActionItemsGrpcRequest) Descriptor() ([]byte, []int)deprecated
- func (x *RequestGenerateActionItemsGrpcRequest) GetInteractionEventId() string
- func (x *RequestGenerateActionItemsGrpcRequest) GetLoggedInUserId() string
- func (x *RequestGenerateActionItemsGrpcRequest) GetTenant() string
- func (*RequestGenerateActionItemsGrpcRequest) ProtoMessage()
- func (x *RequestGenerateActionItemsGrpcRequest) ProtoReflect() protoreflect.Message
- func (x *RequestGenerateActionItemsGrpcRequest) Reset()
- func (x *RequestGenerateActionItemsGrpcRequest) String() string
- type RequestGenerateSummaryGrpcRequest
- func (*RequestGenerateSummaryGrpcRequest) Descriptor() ([]byte, []int)deprecated
- func (x *RequestGenerateSummaryGrpcRequest) GetInteractionEventId() string
- func (x *RequestGenerateSummaryGrpcRequest) GetLoggedInUserId() string
- func (x *RequestGenerateSummaryGrpcRequest) GetTenant() string
- func (*RequestGenerateSummaryGrpcRequest) ProtoMessage()
- func (x *RequestGenerateSummaryGrpcRequest) ProtoReflect() protoreflect.Message
- func (x *RequestGenerateSummaryGrpcRequest) Reset()
- func (x *RequestGenerateSummaryGrpcRequest) String() string
- type Sender
- type UnimplementedInteractionEventGrpcServiceServer
- func (UnimplementedInteractionEventGrpcServiceServer) RequestGenerateActionItems(context.Context, *RequestGenerateActionItemsGrpcRequest) (*InteractionEventIdGrpcResponse, error)
- func (UnimplementedInteractionEventGrpcServiceServer) RequestGenerateSummary(context.Context, *RequestGenerateSummaryGrpcRequest) (*InteractionEventIdGrpcResponse, error)
- func (UnimplementedInteractionEventGrpcServiceServer) UpsertInteractionEvent(context.Context, *UpsertInteractionEventGrpcRequest) (*InteractionEventIdGrpcResponse, error)
- type UnsafeInteractionEventGrpcServiceServer
- type UpsertInteractionEventGrpcRequest
- func (*UpsertInteractionEventGrpcRequest) Descriptor() ([]byte, []int)deprecated
- func (x *UpsertInteractionEventGrpcRequest) GetBelongsToIssueId() string
- func (x *UpsertInteractionEventGrpcRequest) GetBelongsToSessionId() string
- func (x *UpsertInteractionEventGrpcRequest) GetChannel() string
- func (x *UpsertInteractionEventGrpcRequest) GetChannelData() string
- func (x *UpsertInteractionEventGrpcRequest) GetContent() string
- func (x *UpsertInteractionEventGrpcRequest) GetContentType() string
- func (x *UpsertInteractionEventGrpcRequest) GetCreatedAt() *timestamppb.Timestamp
- func (x *UpsertInteractionEventGrpcRequest) GetEventType() string
- func (x *UpsertInteractionEventGrpcRequest) GetExternalSystemFields() *common.ExternalSystemFields
- func (x *UpsertInteractionEventGrpcRequest) GetHide() bool
- func (x *UpsertInteractionEventGrpcRequest) GetId() string
- func (x *UpsertInteractionEventGrpcRequest) GetIdentifier() string
- func (x *UpsertInteractionEventGrpcRequest) GetLoggedInUserId() string
- func (x *UpsertInteractionEventGrpcRequest) GetReceivers() []*Receiver
- func (x *UpsertInteractionEventGrpcRequest) GetSender() *Sender
- func (x *UpsertInteractionEventGrpcRequest) GetSourceFields() *common.SourceFields
- func (x *UpsertInteractionEventGrpcRequest) GetTenant() string
- func (x *UpsertInteractionEventGrpcRequest) GetUpdatedAt() *timestamppb.Timestamp
- func (*UpsertInteractionEventGrpcRequest) ProtoMessage()
- func (x *UpsertInteractionEventGrpcRequest) ProtoReflect() protoreflect.Message
- func (x *UpsertInteractionEventGrpcRequest) Reset()
- func (x *UpsertInteractionEventGrpcRequest) String() string
- type User
Constants ¶
This section is empty.
Variables ¶
var File_interaction_event_proto protoreflect.FileDescriptor
var InteractionEventGrpcService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "interactionEventGrpcService", HandlerType: (*InteractionEventGrpcServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "RequestGenerateSummary", Handler: _InteractionEventGrpcService_RequestGenerateSummary_Handler, }, { MethodName: "RequestGenerateActionItems", Handler: _InteractionEventGrpcService_RequestGenerateActionItems_Handler, }, { MethodName: "UpsertInteractionEvent", Handler: _InteractionEventGrpcService_UpsertInteractionEvent_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "interaction_event.proto", }
InteractionEventGrpcService_ServiceDesc is the grpc.ServiceDesc for InteractionEventGrpcService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterInteractionEventGrpcServiceServer ¶
func RegisterInteractionEventGrpcServiceServer(s grpc.ServiceRegistrar, srv InteractionEventGrpcServiceServer)
Types ¶
type Contact ¶
type Contact struct {
// contains filtered or unexported fields
}
func (*Contact) Descriptor
deprecated
func (*Contact) ProtoMessage ¶
func (*Contact) ProtoMessage()
func (*Contact) ProtoReflect ¶
func (x *Contact) ProtoReflect() protoreflect.Message
type InteractionEventGrpcServiceClient ¶
type InteractionEventGrpcServiceClient interface { RequestGenerateSummary(ctx context.Context, in *RequestGenerateSummaryGrpcRequest, opts ...grpc.CallOption) (*InteractionEventIdGrpcResponse, error) RequestGenerateActionItems(ctx context.Context, in *RequestGenerateActionItemsGrpcRequest, opts ...grpc.CallOption) (*InteractionEventIdGrpcResponse, error) UpsertInteractionEvent(ctx context.Context, in *UpsertInteractionEventGrpcRequest, opts ...grpc.CallOption) (*InteractionEventIdGrpcResponse, error) }
InteractionEventGrpcServiceClient is the client API for InteractionEventGrpcService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
func NewInteractionEventGrpcServiceClient ¶
func NewInteractionEventGrpcServiceClient(cc grpc.ClientConnInterface) InteractionEventGrpcServiceClient
type InteractionEventGrpcServiceServer ¶
type InteractionEventGrpcServiceServer interface { RequestGenerateSummary(context.Context, *RequestGenerateSummaryGrpcRequest) (*InteractionEventIdGrpcResponse, error) RequestGenerateActionItems(context.Context, *RequestGenerateActionItemsGrpcRequest) (*InteractionEventIdGrpcResponse, error) UpsertInteractionEvent(context.Context, *UpsertInteractionEventGrpcRequest) (*InteractionEventIdGrpcResponse, error) }
InteractionEventGrpcServiceServer is the server API for InteractionEventGrpcService service. All implementations should embed UnimplementedInteractionEventGrpcServiceServer for forward compatibility
type InteractionEventIdGrpcResponse ¶
type InteractionEventIdGrpcResponse struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // contains filtered or unexported fields }
func (*InteractionEventIdGrpcResponse) Descriptor
deprecated
func (*InteractionEventIdGrpcResponse) Descriptor() ([]byte, []int)
Deprecated: Use InteractionEventIdGrpcResponse.ProtoReflect.Descriptor instead.
func (*InteractionEventIdGrpcResponse) GetId ¶
func (x *InteractionEventIdGrpcResponse) GetId() string
func (*InteractionEventIdGrpcResponse) ProtoMessage ¶
func (*InteractionEventIdGrpcResponse) ProtoMessage()
func (*InteractionEventIdGrpcResponse) ProtoReflect ¶
func (x *InteractionEventIdGrpcResponse) ProtoReflect() protoreflect.Message
func (*InteractionEventIdGrpcResponse) Reset ¶
func (x *InteractionEventIdGrpcResponse) Reset()
func (*InteractionEventIdGrpcResponse) String ¶
func (x *InteractionEventIdGrpcResponse) String() string
type Organization ¶
type Organization struct {
// contains filtered or unexported fields
}
func (*Organization) Descriptor
deprecated
func (*Organization) Descriptor() ([]byte, []int)
Deprecated: Use Organization.ProtoReflect.Descriptor instead.
func (*Organization) ProtoMessage ¶
func (*Organization) ProtoMessage()
func (*Organization) ProtoReflect ¶
func (x *Organization) ProtoReflect() protoreflect.Message
func (*Organization) Reset ¶
func (x *Organization) Reset()
func (*Organization) String ¶
func (x *Organization) String() string
type Participant ¶
type Participant struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // Types that are assignable to ParticipantType: // // *Participant_User // *Participant_Contact // *Participant_Organization ParticipantType isParticipant_ParticipantType `protobuf_oneof:"participantType"` // contains filtered or unexported fields }
func (*Participant) Descriptor
deprecated
func (*Participant) Descriptor() ([]byte, []int)
Deprecated: Use Participant.ProtoReflect.Descriptor instead.
func (*Participant) GetContact ¶
func (x *Participant) GetContact() *Contact
func (*Participant) GetId ¶
func (x *Participant) GetId() string
func (*Participant) GetOrganization ¶
func (x *Participant) GetOrganization() *Organization
func (*Participant) GetParticipantType ¶
func (m *Participant) GetParticipantType() isParticipant_ParticipantType
func (*Participant) GetUser ¶
func (x *Participant) GetUser() *User
func (*Participant) ProtoMessage ¶
func (*Participant) ProtoMessage()
func (*Participant) ProtoReflect ¶
func (x *Participant) ProtoReflect() protoreflect.Message
func (*Participant) Reset ¶
func (x *Participant) Reset()
func (*Participant) String ¶
func (x *Participant) String() string
type Participant_Contact ¶
type Participant_Contact struct {
Contact *Contact `protobuf:"bytes,3,opt,name=contact,proto3,oneof"`
}
type Participant_Organization ¶
type Participant_Organization struct {
Organization *Organization `protobuf:"bytes,4,opt,name=organization,proto3,oneof"`
}
type Participant_User ¶
type Participant_User struct {
User *User `protobuf:"bytes,2,opt,name=user,proto3,oneof"`
}
type Receiver ¶
type Receiver struct { Participant *Participant `protobuf:"bytes,1,opt,name=participant,proto3" json:"participant,omitempty"` RelationType string `protobuf:"bytes,2,opt,name=relationType,proto3" json:"relationType,omitempty"` // contains filtered or unexported fields }
func (*Receiver) Descriptor
deprecated
func (*Receiver) GetParticipant ¶
func (x *Receiver) GetParticipant() *Participant
func (*Receiver) GetRelationType ¶
func (*Receiver) ProtoMessage ¶
func (*Receiver) ProtoMessage()
func (*Receiver) ProtoReflect ¶
func (x *Receiver) ProtoReflect() protoreflect.Message
type RequestGenerateActionItemsGrpcRequest ¶
type RequestGenerateActionItemsGrpcRequest struct { Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"` InteractionEventId string `protobuf:"bytes,2,opt,name=interactionEventId,proto3" json:"interactionEventId,omitempty"` LoggedInUserId string `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` // contains filtered or unexported fields }
func (*RequestGenerateActionItemsGrpcRequest) Descriptor
deprecated
func (*RequestGenerateActionItemsGrpcRequest) Descriptor() ([]byte, []int)
Deprecated: Use RequestGenerateActionItemsGrpcRequest.ProtoReflect.Descriptor instead.
func (*RequestGenerateActionItemsGrpcRequest) GetInteractionEventId ¶
func (x *RequestGenerateActionItemsGrpcRequest) GetInteractionEventId() string
func (*RequestGenerateActionItemsGrpcRequest) GetLoggedInUserId ¶
func (x *RequestGenerateActionItemsGrpcRequest) GetLoggedInUserId() string
func (*RequestGenerateActionItemsGrpcRequest) GetTenant ¶
func (x *RequestGenerateActionItemsGrpcRequest) GetTenant() string
func (*RequestGenerateActionItemsGrpcRequest) ProtoMessage ¶
func (*RequestGenerateActionItemsGrpcRequest) ProtoMessage()
func (*RequestGenerateActionItemsGrpcRequest) ProtoReflect ¶
func (x *RequestGenerateActionItemsGrpcRequest) ProtoReflect() protoreflect.Message
func (*RequestGenerateActionItemsGrpcRequest) Reset ¶
func (x *RequestGenerateActionItemsGrpcRequest) Reset()
func (*RequestGenerateActionItemsGrpcRequest) String ¶
func (x *RequestGenerateActionItemsGrpcRequest) String() string
type RequestGenerateSummaryGrpcRequest ¶
type RequestGenerateSummaryGrpcRequest struct { Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"` InteractionEventId string `protobuf:"bytes,2,opt,name=interactionEventId,proto3" json:"interactionEventId,omitempty"` LoggedInUserId string `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` // contains filtered or unexported fields }
func (*RequestGenerateSummaryGrpcRequest) Descriptor
deprecated
func (*RequestGenerateSummaryGrpcRequest) Descriptor() ([]byte, []int)
Deprecated: Use RequestGenerateSummaryGrpcRequest.ProtoReflect.Descriptor instead.
func (*RequestGenerateSummaryGrpcRequest) GetInteractionEventId ¶
func (x *RequestGenerateSummaryGrpcRequest) GetInteractionEventId() string
func (*RequestGenerateSummaryGrpcRequest) GetLoggedInUserId ¶
func (x *RequestGenerateSummaryGrpcRequest) GetLoggedInUserId() string
func (*RequestGenerateSummaryGrpcRequest) GetTenant ¶
func (x *RequestGenerateSummaryGrpcRequest) GetTenant() string
func (*RequestGenerateSummaryGrpcRequest) ProtoMessage ¶
func (*RequestGenerateSummaryGrpcRequest) ProtoMessage()
func (*RequestGenerateSummaryGrpcRequest) ProtoReflect ¶
func (x *RequestGenerateSummaryGrpcRequest) ProtoReflect() protoreflect.Message
func (*RequestGenerateSummaryGrpcRequest) Reset ¶
func (x *RequestGenerateSummaryGrpcRequest) Reset()
func (*RequestGenerateSummaryGrpcRequest) String ¶
func (x *RequestGenerateSummaryGrpcRequest) String() string
type Sender ¶
type Sender struct { Participant *Participant `protobuf:"bytes,1,opt,name=participant,proto3" json:"participant,omitempty"` RelationType string `protobuf:"bytes,2,opt,name=relationType,proto3" json:"relationType,omitempty"` // contains filtered or unexported fields }
func (*Sender) Descriptor
deprecated
func (*Sender) GetParticipant ¶
func (x *Sender) GetParticipant() *Participant
func (*Sender) GetRelationType ¶
func (*Sender) ProtoMessage ¶
func (*Sender) ProtoMessage()
func (*Sender) ProtoReflect ¶
func (x *Sender) ProtoReflect() protoreflect.Message
type UnimplementedInteractionEventGrpcServiceServer ¶
type UnimplementedInteractionEventGrpcServiceServer struct { }
UnimplementedInteractionEventGrpcServiceServer should be embedded to have forward compatible implementations.
func (UnimplementedInteractionEventGrpcServiceServer) RequestGenerateActionItems ¶
func (UnimplementedInteractionEventGrpcServiceServer) RequestGenerateActionItems(context.Context, *RequestGenerateActionItemsGrpcRequest) (*InteractionEventIdGrpcResponse, error)
func (UnimplementedInteractionEventGrpcServiceServer) RequestGenerateSummary ¶
func (UnimplementedInteractionEventGrpcServiceServer) RequestGenerateSummary(context.Context, *RequestGenerateSummaryGrpcRequest) (*InteractionEventIdGrpcResponse, error)
func (UnimplementedInteractionEventGrpcServiceServer) UpsertInteractionEvent ¶
func (UnimplementedInteractionEventGrpcServiceServer) UpsertInteractionEvent(context.Context, *UpsertInteractionEventGrpcRequest) (*InteractionEventIdGrpcResponse, error)
type UnsafeInteractionEventGrpcServiceServer ¶
type UnsafeInteractionEventGrpcServiceServer interface {
// contains filtered or unexported methods
}
UnsafeInteractionEventGrpcServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to InteractionEventGrpcServiceServer will result in compilation errors.
type UpsertInteractionEventGrpcRequest ¶
type UpsertInteractionEventGrpcRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Tenant string `protobuf:"bytes,2,opt,name=tenant,proto3" json:"tenant,omitempty"` LoggedInUserId string `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"` ContentType string `protobuf:"bytes,5,opt,name=contentType,proto3" json:"contentType,omitempty"` Identifier string `protobuf:"bytes,6,opt,name=identifier,proto3" json:"identifier,omitempty"` Channel string `protobuf:"bytes,7,opt,name=channel,proto3" json:"channel,omitempty"` ChannelData string `protobuf:"bytes,8,opt,name=channelData,proto3" json:"channelData,omitempty"` EventType string `protobuf:"bytes,9,opt,name=eventType,proto3" json:"eventType,omitempty"` Hide bool `protobuf:"varint,10,opt,name=hide,proto3" json:"hide,omitempty"` CreatedAt *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=createdAt,proto3" json:"createdAt,omitempty"` UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"` BelongsToIssueId *string `protobuf:"bytes,13,opt,name=belongsToIssueId,proto3,oneof" json:"belongsToIssueId,omitempty"` BelongsToSessionId *string `protobuf:"bytes,14,opt,name=belongsToSessionId,proto3,oneof" json:"belongsToSessionId,omitempty"` SourceFields *common.SourceFields `protobuf:"bytes,15,opt,name=sourceFields,proto3" json:"sourceFields,omitempty"` ExternalSystemFields *common.ExternalSystemFields `protobuf:"bytes,16,opt,name=externalSystemFields,proto3" json:"externalSystemFields,omitempty"` Sender *Sender `protobuf:"bytes,17,opt,name=sender,proto3" json:"sender,omitempty"` Receivers []*Receiver `protobuf:"bytes,18,rep,name=receivers,proto3" json:"receivers,omitempty"` // contains filtered or unexported fields }
func (*UpsertInteractionEventGrpcRequest) Descriptor
deprecated
func (*UpsertInteractionEventGrpcRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpsertInteractionEventGrpcRequest.ProtoReflect.Descriptor instead.
func (*UpsertInteractionEventGrpcRequest) GetBelongsToIssueId ¶
func (x *UpsertInteractionEventGrpcRequest) GetBelongsToIssueId() string
func (*UpsertInteractionEventGrpcRequest) GetBelongsToSessionId ¶
func (x *UpsertInteractionEventGrpcRequest) GetBelongsToSessionId() string
func (*UpsertInteractionEventGrpcRequest) GetChannel ¶
func (x *UpsertInteractionEventGrpcRequest) GetChannel() string
func (*UpsertInteractionEventGrpcRequest) GetChannelData ¶
func (x *UpsertInteractionEventGrpcRequest) GetChannelData() string
func (*UpsertInteractionEventGrpcRequest) GetContent ¶
func (x *UpsertInteractionEventGrpcRequest) GetContent() string
func (*UpsertInteractionEventGrpcRequest) GetContentType ¶
func (x *UpsertInteractionEventGrpcRequest) GetContentType() string
func (*UpsertInteractionEventGrpcRequest) GetCreatedAt ¶
func (x *UpsertInteractionEventGrpcRequest) GetCreatedAt() *timestamppb.Timestamp
func (*UpsertInteractionEventGrpcRequest) GetEventType ¶
func (x *UpsertInteractionEventGrpcRequest) GetEventType() string
func (*UpsertInteractionEventGrpcRequest) GetExternalSystemFields ¶
func (x *UpsertInteractionEventGrpcRequest) GetExternalSystemFields() *common.ExternalSystemFields
func (*UpsertInteractionEventGrpcRequest) GetHide ¶
func (x *UpsertInteractionEventGrpcRequest) GetHide() bool
func (*UpsertInteractionEventGrpcRequest) GetId ¶
func (x *UpsertInteractionEventGrpcRequest) GetId() string
func (*UpsertInteractionEventGrpcRequest) GetIdentifier ¶
func (x *UpsertInteractionEventGrpcRequest) GetIdentifier() string
func (*UpsertInteractionEventGrpcRequest) GetLoggedInUserId ¶
func (x *UpsertInteractionEventGrpcRequest) GetLoggedInUserId() string
func (*UpsertInteractionEventGrpcRequest) GetReceivers ¶
func (x *UpsertInteractionEventGrpcRequest) GetReceivers() []*Receiver
func (*UpsertInteractionEventGrpcRequest) GetSender ¶
func (x *UpsertInteractionEventGrpcRequest) GetSender() *Sender
func (*UpsertInteractionEventGrpcRequest) GetSourceFields ¶
func (x *UpsertInteractionEventGrpcRequest) GetSourceFields() *common.SourceFields
func (*UpsertInteractionEventGrpcRequest) GetTenant ¶
func (x *UpsertInteractionEventGrpcRequest) GetTenant() string
func (*UpsertInteractionEventGrpcRequest) GetUpdatedAt ¶
func (x *UpsertInteractionEventGrpcRequest) GetUpdatedAt() *timestamppb.Timestamp
func (*UpsertInteractionEventGrpcRequest) ProtoMessage ¶
func (*UpsertInteractionEventGrpcRequest) ProtoMessage()
func (*UpsertInteractionEventGrpcRequest) ProtoReflect ¶
func (x *UpsertInteractionEventGrpcRequest) ProtoReflect() protoreflect.Message
func (*UpsertInteractionEventGrpcRequest) Reset ¶
func (x *UpsertInteractionEventGrpcRequest) Reset()
func (*UpsertInteractionEventGrpcRequest) String ¶
func (x *UpsertInteractionEventGrpcRequest) String() string
type User ¶
type User struct {
// contains filtered or unexported fields
}
func (*User) Descriptor
deprecated
func (*User) ProtoMessage ¶
func (*User) ProtoMessage()
func (*User) ProtoReflect ¶
func (x *User) ProtoReflect() protoreflect.Message