contactmanager

package
v1.8.25 Latest Latest
Warning

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

Go to latest
Published: Oct 15, 2024 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ContactManager_GetContactList_FullMethodName        = "/api.v1alpha1.contactmanager.ContactManager/GetContactList"
	ContactManager_ListContactEntryList_FullMethodName  = "/api.v1alpha1.contactmanager.ContactManager/ListContactEntryList"
	ContactManager_GetEncContactEntry_FullMethodName    = "/api.v1alpha1.contactmanager.ContactManager/GetEncContactEntry"
	ContactManager_GetKYCEncContactEntry_FullMethodName = "/api.v1alpha1.contactmanager.ContactManager/GetKYCEncContactEntry"
	ContactManager_GetKYCKeys_FullMethodName            = "/api.v1alpha1.contactmanager.ContactManager/GetKYCKeys"
	ContactManager_AddContactEntry_FullMethodName       = "/api.v1alpha1.contactmanager.ContactManager/AddContactEntry"
	ContactManager_EditContactEntry_FullMethodName      = "/api.v1alpha1.contactmanager.ContactManager/EditContactEntry"
	ContactManager_ListContactsByEntity_FullMethodName  = "/api.v1alpha1.contactmanager.ContactManager/ListContactsByEntity"
	ContactManager_GetContactFieldType_FullMethodName   = "/api.v1alpha1.contactmanager.ContactManager/GetContactFieldType"
)

Variables

View Source
var ContactManager_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "api.v1alpha1.contactmanager.ContactManager",
	HandlerType: (*ContactManagerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetContactList",
			Handler:    _ContactManager_GetContactList_Handler,
		},
		{
			MethodName: "ListContactEntryList",
			Handler:    _ContactManager_ListContactEntryList_Handler,
		},
		{
			MethodName: "GetEncContactEntry",
			Handler:    _ContactManager_GetEncContactEntry_Handler,
		},
		{
			MethodName: "GetKYCEncContactEntry",
			Handler:    _ContactManager_GetKYCEncContactEntry_Handler,
		},
		{
			MethodName: "GetKYCKeys",
			Handler:    _ContactManager_GetKYCKeys_Handler,
		},
		{
			MethodName: "AddContactEntry",
			Handler:    _ContactManager_AddContactEntry_Handler,
		},
		{
			MethodName: "EditContactEntry",
			Handler:    _ContactManager_EditContactEntry_Handler,
		},
		{
			MethodName: "ListContactsByEntity",
			Handler:    _ContactManager_ListContactsByEntity_Handler,
		},
		{
			MethodName: "GetContactFieldType",
			Handler:    _ContactManager_GetContactFieldType_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/v1alpha1/contactmanager/service.proto",
}

ContactManager_ServiceDesc is the grpc.ServiceDesc for ContactManager 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_api_v1alpha1_contactmanager_contactmanager_proto protoreflect.FileDescriptor
View Source
var File_api_v1alpha1_contactmanager_service_proto protoreflect.FileDescriptor

Functions

func RegisterContactManagerServer

func RegisterContactManagerServer(s grpc.ServiceRegistrar, srv ContactManagerServer)

Types

type AddContactEntryRequest added in v1.7.71

type AddContactEntryRequest struct {
	ContactManagerListId int64 `` /* 126-byte string literal not displayed */
	// List of entries of a given contact
	Entry []*Entry `protobuf:"bytes,2,rep,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*AddContactEntryRequest) Descriptor deprecated added in v1.7.71

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

Deprecated: Use AddContactEntryRequest.ProtoReflect.Descriptor instead.

func (*AddContactEntryRequest) GetContactManagerListId added in v1.7.71

func (x *AddContactEntryRequest) GetContactManagerListId() int64

func (*AddContactEntryRequest) GetEntry added in v1.7.71

func (x *AddContactEntryRequest) GetEntry() []*Entry

func (*AddContactEntryRequest) ProtoMessage added in v1.7.71

func (*AddContactEntryRequest) ProtoMessage()

func (*AddContactEntryRequest) ProtoReflect added in v1.7.71

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

func (*AddContactEntryRequest) Reset added in v1.7.71

func (x *AddContactEntryRequest) Reset()

func (*AddContactEntryRequest) String added in v1.7.71

func (x *AddContactEntryRequest) String() string

type AddContactEntryResponse added in v1.7.71

type AddContactEntryResponse struct {

	// contact_manager_entry_list_id
	ContactId int64 `protobuf:"varint,1,opt,name=contact_id,json=contactId,proto3" json:"contact_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AddContactEntryResponse) Descriptor deprecated added in v1.7.71

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

Deprecated: Use AddContactEntryResponse.ProtoReflect.Descriptor instead.

func (*AddContactEntryResponse) GetContactId added in v1.7.71

func (x *AddContactEntryResponse) GetContactId() int64

func (*AddContactEntryResponse) ProtoMessage added in v1.7.71

func (*AddContactEntryResponse) ProtoMessage()

func (*AddContactEntryResponse) ProtoReflect added in v1.7.71

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

func (*AddContactEntryResponse) Reset added in v1.7.71

func (x *AddContactEntryResponse) Reset()

func (*AddContactEntryResponse) String added in v1.7.71

func (x *AddContactEntryResponse) String() string

type ContactManagerClient

type ContactManagerClient interface {
	GetContactList(ctx context.Context, in *GetContactListRequest, opts ...grpc.CallOption) (*GetContactListResponse, error)
	ListContactEntryList(ctx context.Context, in *ListContactEntryListRequest, opts ...grpc.CallOption) (*ListContactEntryListResponse, error)
	GetEncContactEntry(ctx context.Context, in *GetEncContactEntryRequest, opts ...grpc.CallOption) (*GetEncContactEntryResponse, error)
	GetKYCEncContactEntry(ctx context.Context, in *GetKYCEncContactEntryRequest, opts ...grpc.CallOption) (*GetKYCEncContactEntryResponse, error)
	GetKYCKeys(ctx context.Context, in *GetKYCKeysRequest, opts ...grpc.CallOption) (*GetKYCKeysResponse, error)
	// *
	// Adds a new contact entry based on the provided request.
	AddContactEntry(ctx context.Context, in *AddContactEntryRequest, opts ...grpc.CallOption) (*AddContactEntryResponse, error)
	// *
	// Edits the fields of an existing contact entry...
	EditContactEntry(ctx context.Context, in *EditContactEntryRequest, opts ...grpc.CallOption) (*EditContactEntryResponse, error)
	// *
	// List contacts for entity
	ListContactsByEntity(ctx context.Context, in *ListContactsByEntityRequest, opts ...grpc.CallOption) (*ListContactsByEntityResponse, error)
	// *
	// Get Contact Field Type
	GetContactFieldType(ctx context.Context, in *GetContactFieldTypeRequest, opts ...grpc.CallOption) (*GetContactFieldTypeResponse, error)
}

ContactManagerClient is the client API for ContactManager 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 ContactManagerEntry

type ContactManagerEntry struct {
	ContactManagerEntryId     int64                      `` /* 129-byte string literal not displayed */
	ContactManagerEntryListId int64                      `` /* 143-byte string literal not displayed */
	Key                       string                     `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	Value                     string                     `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Type                      string                     `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
	DateCreated               *timestamppb.Timestamp     `protobuf:"bytes,6,opt,name=date_created,json=dateCreated,proto3" json:"date_created,omitempty"`
	Status                    commons.ContactEntryStatus `protobuf:"varint,7,opt,name=status,proto3,enum=api.commons.ContactEntryStatus" json:"status,omitempty"`
	// contains filtered or unexported fields
}

Common messages deprecated

func (*ContactManagerEntry) Descriptor deprecated

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

Deprecated: Use ContactManagerEntry.ProtoReflect.Descriptor instead.

func (*ContactManagerEntry) GetContactManagerEntryId

func (x *ContactManagerEntry) GetContactManagerEntryId() int64

func (*ContactManagerEntry) GetContactManagerEntryListId

func (x *ContactManagerEntry) GetContactManagerEntryListId() int64

func (*ContactManagerEntry) GetDateCreated

func (x *ContactManagerEntry) GetDateCreated() *timestamppb.Timestamp

func (*ContactManagerEntry) GetKey

func (x *ContactManagerEntry) GetKey() string

func (*ContactManagerEntry) GetStatus added in v1.8.23

func (*ContactManagerEntry) GetType

func (x *ContactManagerEntry) GetType() string

func (*ContactManagerEntry) GetValue

func (x *ContactManagerEntry) GetValue() string

func (*ContactManagerEntry) ProtoMessage

func (*ContactManagerEntry) ProtoMessage()

func (*ContactManagerEntry) ProtoReflect

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

func (*ContactManagerEntry) Reset

func (x *ContactManagerEntry) Reset()

func (*ContactManagerEntry) String

func (x *ContactManagerEntry) String() string

type ContactManagerEntryVal

type ContactManagerEntryVal struct {
	Type  string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*ContactManagerEntryVal) Descriptor deprecated

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

Deprecated: Use ContactManagerEntryVal.ProtoReflect.Descriptor instead.

func (*ContactManagerEntryVal) GetType

func (x *ContactManagerEntryVal) GetType() string

func (*ContactManagerEntryVal) GetValue

func (x *ContactManagerEntryVal) GetValue() string

func (*ContactManagerEntryVal) ProtoMessage

func (*ContactManagerEntryVal) ProtoMessage()

func (*ContactManagerEntryVal) ProtoReflect

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

func (*ContactManagerEntryVal) Reset

func (x *ContactManagerEntryVal) Reset()

func (*ContactManagerEntryVal) String

func (x *ContactManagerEntryVal) String() string

type ContactManagerList

type ContactManagerList struct {
	ContactManagerListId int64  `` /* 126-byte string literal not displayed */
	OrgId                string `protobuf:"bytes,2,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
	ProjectId            int64  `protobuf:"varint,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	FileName             string `protobuf:"bytes,4,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
	Description          string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
	// List of Columns In The Contact List. UI to render table based on this list
	ListDetails []string                  `protobuf:"bytes,6,rep,name=list_details,json=listDetails,proto3" json:"list_details,omitempty"`
	Ttl         int64                     `protobuf:"varint,7,opt,name=ttl,proto3" json:"ttl,omitempty"`
	DateCreated *timestamppb.Timestamp    `protobuf:"bytes,8,opt,name=date_created,json=dateCreated,proto3" json:"date_created,omitempty"`
	IsDeleted   bool                      `protobuf:"varint,9,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
	Status      commons.ContactListStatus `protobuf:"varint,10,opt,name=status,proto3,enum=api.commons.ContactListStatus" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*ContactManagerList) Descriptor deprecated

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

Deprecated: Use ContactManagerList.ProtoReflect.Descriptor instead.

func (*ContactManagerList) GetContactManagerListId

func (x *ContactManagerList) GetContactManagerListId() int64

func (*ContactManagerList) GetDateCreated

func (x *ContactManagerList) GetDateCreated() *timestamppb.Timestamp

func (*ContactManagerList) GetDescription

func (x *ContactManagerList) GetDescription() string

func (*ContactManagerList) GetFileName

func (x *ContactManagerList) GetFileName() string

func (*ContactManagerList) GetIsDeleted added in v1.7.72

func (x *ContactManagerList) GetIsDeleted() bool

func (*ContactManagerList) GetListDetails

func (x *ContactManagerList) GetListDetails() []string

func (*ContactManagerList) GetOrgId

func (x *ContactManagerList) GetOrgId() string

func (*ContactManagerList) GetProjectId

func (x *ContactManagerList) GetProjectId() int64

func (*ContactManagerList) GetStatus added in v1.8.23

func (*ContactManagerList) GetTtl

func (x *ContactManagerList) GetTtl() int64

func (*ContactManagerList) ProtoMessage

func (*ContactManagerList) ProtoMessage()

func (*ContactManagerList) ProtoReflect

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

func (*ContactManagerList) Reset

func (x *ContactManagerList) Reset()

func (*ContactManagerList) String

func (x *ContactManagerList) String() string

type ContactManagerServer

type ContactManagerServer interface {
	GetContactList(context.Context, *GetContactListRequest) (*GetContactListResponse, error)
	ListContactEntryList(context.Context, *ListContactEntryListRequest) (*ListContactEntryListResponse, error)
	GetEncContactEntry(context.Context, *GetEncContactEntryRequest) (*GetEncContactEntryResponse, error)
	GetKYCEncContactEntry(context.Context, *GetKYCEncContactEntryRequest) (*GetKYCEncContactEntryResponse, error)
	GetKYCKeys(context.Context, *GetKYCKeysRequest) (*GetKYCKeysResponse, error)
	// *
	// Adds a new contact entry based on the provided request.
	AddContactEntry(context.Context, *AddContactEntryRequest) (*AddContactEntryResponse, error)
	// *
	// Edits the fields of an existing contact entry...
	EditContactEntry(context.Context, *EditContactEntryRequest) (*EditContactEntryResponse, error)
	// *
	// List contacts for entity
	ListContactsByEntity(context.Context, *ListContactsByEntityRequest) (*ListContactsByEntityResponse, error)
	// *
	// Get Contact Field Type
	GetContactFieldType(context.Context, *GetContactFieldTypeRequest) (*GetContactFieldTypeResponse, error)
	// contains filtered or unexported methods
}

ContactManagerServer is the server API for ContactManager service. All implementations must embed UnimplementedContactManagerServer for forward compatibility.

type EditContactEntryRequest added in v1.7.75

type EditContactEntryRequest struct {
	ContactManagerListId  int64          `` /* 126-byte string literal not displayed */
	ContactManagerEntryId int64          `` /* 129-byte string literal not displayed */
	EditedEntry           []*EditedEntry `protobuf:"bytes,3,rep,name=edited_entry,json=editedEntry,proto3" json:"edited_entry,omitempty"`
	// contains filtered or unexported fields
}

func (*EditContactEntryRequest) Descriptor deprecated added in v1.7.75

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

Deprecated: Use EditContactEntryRequest.ProtoReflect.Descriptor instead.

func (*EditContactEntryRequest) GetContactManagerEntryId added in v1.7.75

func (x *EditContactEntryRequest) GetContactManagerEntryId() int64

func (*EditContactEntryRequest) GetContactManagerListId added in v1.7.75

func (x *EditContactEntryRequest) GetContactManagerListId() int64

func (*EditContactEntryRequest) GetEditedEntry added in v1.7.75

func (x *EditContactEntryRequest) GetEditedEntry() []*EditedEntry

func (*EditContactEntryRequest) ProtoMessage added in v1.7.75

func (*EditContactEntryRequest) ProtoMessage()

func (*EditContactEntryRequest) ProtoReflect added in v1.7.75

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

func (*EditContactEntryRequest) Reset added in v1.7.75

func (x *EditContactEntryRequest) Reset()

func (*EditContactEntryRequest) String added in v1.7.75

func (x *EditContactEntryRequest) String() string

type EditContactEntryResponse added in v1.7.75

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

func (*EditContactEntryResponse) Descriptor deprecated added in v1.7.75

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

Deprecated: Use EditContactEntryResponse.ProtoReflect.Descriptor instead.

func (*EditContactEntryResponse) ProtoMessage added in v1.7.75

func (*EditContactEntryResponse) ProtoMessage()

func (*EditContactEntryResponse) ProtoReflect added in v1.7.75

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

func (*EditContactEntryResponse) Reset added in v1.7.75

func (x *EditContactEntryResponse) Reset()

func (*EditContactEntryResponse) String added in v1.7.75

func (x *EditContactEntryResponse) String() string

type EditedEntry added in v1.7.75

type EditedEntry struct {
	ContactManagerEntryListId int64  `` /* 143-byte string literal not displayed */
	Name                      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Value                     string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"` // The new value to be updated
	Type                      string `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*EditedEntry) Descriptor deprecated added in v1.7.75

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

Deprecated: Use EditedEntry.ProtoReflect.Descriptor instead.

func (*EditedEntry) GetContactManagerEntryListId added in v1.7.75

func (x *EditedEntry) GetContactManagerEntryListId() int64

func (*EditedEntry) GetName added in v1.7.75

func (x *EditedEntry) GetName() string

func (*EditedEntry) GetType added in v1.7.75

func (x *EditedEntry) GetType() string

func (*EditedEntry) GetValue added in v1.7.75

func (x *EditedEntry) GetValue() string

func (*EditedEntry) ProtoMessage added in v1.7.75

func (*EditedEntry) ProtoMessage()

func (*EditedEntry) ProtoReflect added in v1.7.75

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

func (*EditedEntry) Reset added in v1.7.75

func (x *EditedEntry) Reset()

func (*EditedEntry) String added in v1.7.75

func (x *EditedEntry) String() string

type Entry added in v1.7.71

type Entry struct {
	Name  string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	Type  string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*Entry) Descriptor deprecated added in v1.7.71

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

Deprecated: Use Entry.ProtoReflect.Descriptor instead.

func (*Entry) GetName added in v1.7.71

func (x *Entry) GetName() string

func (*Entry) GetType added in v1.7.71

func (x *Entry) GetType() string

func (*Entry) GetValue added in v1.7.71

func (x *Entry) GetValue() string

func (*Entry) ProtoMessage added in v1.7.71

func (*Entry) ProtoMessage()

func (*Entry) ProtoReflect added in v1.7.71

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

func (*Entry) Reset added in v1.7.71

func (x *Entry) Reset()

func (*Entry) String added in v1.7.71

func (x *Entry) String() string

type GetContactFieldTypeRequest added in v1.8.23

type GetContactFieldTypeRequest struct {

	// Field name to be analyzed by presidio
	FieldName string `protobuf:"bytes,1,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"`
	// Field value to be analyzed by presidio
	FieldValue string `protobuf:"bytes,2,opt,name=field_value,json=fieldValue,proto3" json:"field_value,omitempty"`
	// Field Type - optional to provide more info
	FieldType *commons.ClassifierEntityType `` /* 133-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetContactFieldTypeRequest) Descriptor deprecated added in v1.8.23

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

Deprecated: Use GetContactFieldTypeRequest.ProtoReflect.Descriptor instead.

func (*GetContactFieldTypeRequest) GetFieldName added in v1.8.23

func (x *GetContactFieldTypeRequest) GetFieldName() string

func (*GetContactFieldTypeRequest) GetFieldType added in v1.8.23

func (*GetContactFieldTypeRequest) GetFieldValue added in v1.8.23

func (x *GetContactFieldTypeRequest) GetFieldValue() string

func (*GetContactFieldTypeRequest) ProtoMessage added in v1.8.23

func (*GetContactFieldTypeRequest) ProtoMessage()

func (*GetContactFieldTypeRequest) ProtoReflect added in v1.8.23

func (*GetContactFieldTypeRequest) Reset added in v1.8.23

func (x *GetContactFieldTypeRequest) Reset()

func (*GetContactFieldTypeRequest) String added in v1.8.23

func (x *GetContactFieldTypeRequest) String() string

type GetContactFieldTypeResponse added in v1.8.23

type GetContactFieldTypeResponse struct {

	// Field type return on presidio analysis
	FieldType commons.ClassifierEntityType `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetContactFieldTypeResponse) Descriptor deprecated added in v1.8.23

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

Deprecated: Use GetContactFieldTypeResponse.ProtoReflect.Descriptor instead.

func (*GetContactFieldTypeResponse) GetFieldType added in v1.8.23

func (*GetContactFieldTypeResponse) ProtoMessage added in v1.8.23

func (*GetContactFieldTypeResponse) ProtoMessage()

func (*GetContactFieldTypeResponse) ProtoReflect added in v1.8.23

func (*GetContactFieldTypeResponse) Reset added in v1.8.23

func (x *GetContactFieldTypeResponse) Reset()

func (*GetContactFieldTypeResponse) String added in v1.8.23

func (x *GetContactFieldTypeResponse) String() string

type GetContactListRequest

type GetContactListRequest struct {
	RequestMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=request_mask,json=requestMask,proto3" json:"request_mask,omitempty"`
	OrgId       string                 `protobuf:"bytes,2,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
	ProjectId   int64                  `protobuf:"varint,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// contains filtered or unexported fields
}

New Proto's For Get and List - Contact List and Contact Entries

func (*GetContactListRequest) Descriptor deprecated

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

Deprecated: Use GetContactListRequest.ProtoReflect.Descriptor instead.

func (*GetContactListRequest) GetOrgId

func (x *GetContactListRequest) GetOrgId() string

func (*GetContactListRequest) GetProjectId

func (x *GetContactListRequest) GetProjectId() int64

func (*GetContactListRequest) GetRequestMask

func (x *GetContactListRequest) GetRequestMask() *fieldmaskpb.FieldMask

func (*GetContactListRequest) ProtoMessage

func (*GetContactListRequest) ProtoMessage()

func (*GetContactListRequest) ProtoReflect

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

func (*GetContactListRequest) Reset

func (x *GetContactListRequest) Reset()

func (*GetContactListRequest) String

func (x *GetContactListRequest) String() string

type GetContactListResponse

type GetContactListResponse struct {
	ContactManagerList []*ContactManagerList `protobuf:"bytes,2,rep,name=contact_manager_list,json=contactManagerList,proto3" json:"contact_manager_list,omitempty"`
	// contains filtered or unexported fields
}

func (*GetContactListResponse) Descriptor deprecated

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

Deprecated: Use GetContactListResponse.ProtoReflect.Descriptor instead.

func (*GetContactListResponse) GetContactManagerList added in v1.7.70

func (x *GetContactListResponse) GetContactManagerList() []*ContactManagerList

func (*GetContactListResponse) ProtoMessage

func (*GetContactListResponse) ProtoMessage()

func (*GetContactListResponse) ProtoReflect

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

func (*GetContactListResponse) Reset

func (x *GetContactListResponse) Reset()

func (*GetContactListResponse) String

func (x *GetContactListResponse) String() string

type GetEncContactEntryRequest

type GetEncContactEntryRequest struct {
	ContactManagerEntryId int64 `` /* 129-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetEncContactEntryRequest) Descriptor deprecated

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

Deprecated: Use GetEncContactEntryRequest.ProtoReflect.Descriptor instead.

func (*GetEncContactEntryRequest) GetContactManagerEntryId

func (x *GetEncContactEntryRequest) GetContactManagerEntryId() int64

func (*GetEncContactEntryRequest) ProtoMessage

func (*GetEncContactEntryRequest) ProtoMessage()

func (*GetEncContactEntryRequest) ProtoReflect

func (*GetEncContactEntryRequest) Reset

func (x *GetEncContactEntryRequest) Reset()

func (*GetEncContactEntryRequest) String

func (x *GetEncContactEntryRequest) String() string

type GetEncContactEntryResponse

type GetEncContactEntryResponse struct {
	ContactManagerEntry []*ContactManagerEntry `protobuf:"bytes,2,rep,name=contact_manager_entry,json=contactManagerEntry,proto3" json:"contact_manager_entry,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEncContactEntryResponse) Descriptor deprecated

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

Deprecated: Use GetEncContactEntryResponse.ProtoReflect.Descriptor instead.

func (*GetEncContactEntryResponse) GetContactManagerEntry added in v1.7.70

func (x *GetEncContactEntryResponse) GetContactManagerEntry() []*ContactManagerEntry

func (*GetEncContactEntryResponse) ProtoMessage

func (*GetEncContactEntryResponse) ProtoMessage()

func (*GetEncContactEntryResponse) ProtoReflect

func (*GetEncContactEntryResponse) Reset

func (x *GetEncContactEntryResponse) Reset()

func (*GetEncContactEntryResponse) String

func (x *GetEncContactEntryResponse) String() string

type GetKYCEncContactEntryRequest

type GetKYCEncContactEntryRequest struct {
	ProjectId   int64                     `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	KycResponse []*ContactManagerEntryVal `protobuf:"bytes,4,rep,name=kyc_response,json=kycResponse,proto3" json:"kyc_response,omitempty"`
	// contains filtered or unexported fields
}

func (*GetKYCEncContactEntryRequest) Descriptor deprecated

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

Deprecated: Use GetKYCEncContactEntryRequest.ProtoReflect.Descriptor instead.

func (*GetKYCEncContactEntryRequest) GetKycResponse added in v1.7.69

func (*GetKYCEncContactEntryRequest) GetProjectId

func (x *GetKYCEncContactEntryRequest) GetProjectId() int64

func (*GetKYCEncContactEntryRequest) ProtoMessage

func (*GetKYCEncContactEntryRequest) ProtoMessage()

func (*GetKYCEncContactEntryRequest) ProtoReflect

func (*GetKYCEncContactEntryRequest) Reset

func (x *GetKYCEncContactEntryRequest) Reset()

func (*GetKYCEncContactEntryRequest) String

type GetKYCEncContactEntryResponse

type GetKYCEncContactEntryResponse struct {
	Verified     bool                   `protobuf:"varint,1,opt,name=verified,proto3" json:"verified,omitempty"`
	ContactEntry []*ContactManagerEntry `protobuf:"bytes,2,rep,name=contact_entry,json=contactEntry,proto3" json:"contact_entry,omitempty"`
	// contains filtered or unexported fields
}

func (*GetKYCEncContactEntryResponse) Descriptor deprecated

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

Deprecated: Use GetKYCEncContactEntryResponse.ProtoReflect.Descriptor instead.

func (*GetKYCEncContactEntryResponse) GetContactEntry added in v1.7.69

func (x *GetKYCEncContactEntryResponse) GetContactEntry() []*ContactManagerEntry

func (*GetKYCEncContactEntryResponse) GetVerified

func (x *GetKYCEncContactEntryResponse) GetVerified() bool

func (*GetKYCEncContactEntryResponse) ProtoMessage

func (*GetKYCEncContactEntryResponse) ProtoMessage()

func (*GetKYCEncContactEntryResponse) ProtoReflect

func (*GetKYCEncContactEntryResponse) Reset

func (x *GetKYCEncContactEntryResponse) Reset()

func (*GetKYCEncContactEntryResponse) String

type GetKYCKeysRequest

type GetKYCKeysRequest struct {
	ProjectSid int64 `protobuf:"varint,1,opt,name=project_sid,json=projectSid,proto3" json:"project_sid,omitempty"`
	// contains filtered or unexported fields
}

func (*GetKYCKeysRequest) Descriptor deprecated

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

Deprecated: Use GetKYCKeysRequest.ProtoReflect.Descriptor instead.

func (*GetKYCKeysRequest) GetProjectSid added in v1.7.81

func (x *GetKYCKeysRequest) GetProjectSid() int64

func (*GetKYCKeysRequest) ProtoMessage

func (*GetKYCKeysRequest) ProtoMessage()

func (*GetKYCKeysRequest) ProtoReflect

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

func (*GetKYCKeysRequest) Reset

func (x *GetKYCKeysRequest) Reset()

func (*GetKYCKeysRequest) String

func (x *GetKYCKeysRequest) String() string

type GetKYCKeysResponse

type GetKYCKeysResponse struct {
	EntryType []string `protobuf:"bytes,1,rep,name=entry_type,json=entryType,proto3" json:"entry_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetKYCKeysResponse) Descriptor deprecated

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

Deprecated: Use GetKYCKeysResponse.ProtoReflect.Descriptor instead.

func (*GetKYCKeysResponse) GetEntryType

func (x *GetKYCKeysResponse) GetEntryType() []string

func (*GetKYCKeysResponse) ProtoMessage

func (*GetKYCKeysResponse) ProtoMessage()

func (*GetKYCKeysResponse) ProtoReflect

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

func (*GetKYCKeysResponse) Reset

func (x *GetKYCKeysResponse) Reset()

func (*GetKYCKeysResponse) String

func (x *GetKYCKeysResponse) String() string

type ListContactEntryListRequest

type ListContactEntryListRequest struct {
	ContactManagerListId int64  `` /* 126-byte string literal not displayed */
	OrgId                string `protobuf:"bytes,2,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
	ProjectId            string `protobuf:"bytes,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ListContactEntryListRequest) Descriptor deprecated

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

Deprecated: Use ListContactEntryListRequest.ProtoReflect.Descriptor instead.

func (*ListContactEntryListRequest) GetContactManagerListId

func (x *ListContactEntryListRequest) GetContactManagerListId() int64

func (*ListContactEntryListRequest) GetOrgId

func (x *ListContactEntryListRequest) GetOrgId() string

func (*ListContactEntryListRequest) GetProjectId

func (x *ListContactEntryListRequest) GetProjectId() string

func (*ListContactEntryListRequest) ProtoMessage

func (*ListContactEntryListRequest) ProtoMessage()

func (*ListContactEntryListRequest) ProtoReflect

func (*ListContactEntryListRequest) Reset

func (x *ListContactEntryListRequest) Reset()

func (*ListContactEntryListRequest) String

func (x *ListContactEntryListRequest) String() string

type ListContactEntryListResponse

type ListContactEntryListResponse struct {
	ContactManagerEntry []*ContactManagerEntry `protobuf:"bytes,2,rep,name=contact_manager_entry,json=contactManagerEntry,proto3" json:"contact_manager_entry,omitempty"`
	// contains filtered or unexported fields
}

List all Unencrypted Data. Encrypted Data would be sent On Double Click of the Record Seperate API to List All Encrypted Data

func (*ListContactEntryListResponse) Descriptor deprecated

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

Deprecated: Use ListContactEntryListResponse.ProtoReflect.Descriptor instead.

func (*ListContactEntryListResponse) GetContactManagerEntry added in v1.7.70

func (x *ListContactEntryListResponse) GetContactManagerEntry() []*ContactManagerEntry

func (*ListContactEntryListResponse) ProtoMessage

func (*ListContactEntryListResponse) ProtoMessage()

func (*ListContactEntryListResponse) ProtoReflect

func (*ListContactEntryListResponse) Reset

func (x *ListContactEntryListResponse) Reset()

func (*ListContactEntryListResponse) String

type ListContactsByEntityRequest added in v1.8.13

type ListContactsByEntityRequest struct {
	ProjectId int64  `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` //Project Id of the contact
	EntityId  string `protobuf:"bytes,2,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`     //Id of entity to be referenced with Contact, e.g: Ticket Code
	// contains filtered or unexported fields
}

func (*ListContactsByEntityRequest) Descriptor deprecated added in v1.8.13

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

Deprecated: Use ListContactsByEntityRequest.ProtoReflect.Descriptor instead.

func (*ListContactsByEntityRequest) GetEntityId added in v1.8.13

func (x *ListContactsByEntityRequest) GetEntityId() string

func (*ListContactsByEntityRequest) GetProjectId added in v1.8.13

func (x *ListContactsByEntityRequest) GetProjectId() int64

func (*ListContactsByEntityRequest) ProtoMessage added in v1.8.13

func (*ListContactsByEntityRequest) ProtoMessage()

func (*ListContactsByEntityRequest) ProtoReflect added in v1.8.13

func (*ListContactsByEntityRequest) Reset added in v1.8.13

func (x *ListContactsByEntityRequest) Reset()

func (*ListContactsByEntityRequest) String added in v1.8.13

func (x *ListContactsByEntityRequest) String() string

type ListContactsByEntityResponse added in v1.8.13

type ListContactsByEntityResponse struct {

	// Contacts associated to the entity
	ContactManagerEntry []*ContactManagerEntry `protobuf:"bytes,1,rep,name=contact_manager_entry,json=contactManagerEntry,proto3" json:"contact_manager_entry,omitempty"`
	// contains filtered or unexported fields
}

func (*ListContactsByEntityResponse) Descriptor deprecated added in v1.8.13

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

Deprecated: Use ListContactsByEntityResponse.ProtoReflect.Descriptor instead.

func (*ListContactsByEntityResponse) GetContactManagerEntry added in v1.8.13

func (x *ListContactsByEntityResponse) GetContactManagerEntry() []*ContactManagerEntry

func (*ListContactsByEntityResponse) ProtoMessage added in v1.8.13

func (*ListContactsByEntityResponse) ProtoMessage()

func (*ListContactsByEntityResponse) ProtoReflect added in v1.8.13

func (*ListContactsByEntityResponse) Reset added in v1.8.13

func (x *ListContactsByEntityResponse) Reset()

func (*ListContactsByEntityResponse) String added in v1.8.13

type UnimplementedContactManagerServer

type UnimplementedContactManagerServer struct{}

UnimplementedContactManagerServer 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 (UnimplementedContactManagerServer) AddContactEntry added in v1.7.71

func (UnimplementedContactManagerServer) EditContactEntry added in v1.7.75

func (UnimplementedContactManagerServer) GetContactFieldType added in v1.8.23

func (UnimplementedContactManagerServer) GetContactList

func (UnimplementedContactManagerServer) GetEncContactEntry

func (UnimplementedContactManagerServer) GetKYCKeys

func (UnimplementedContactManagerServer) ListContactsByEntity added in v1.8.13

type UnsafeContactManagerServer

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

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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