proto

package
v2.9.6 Latest Latest
Warning

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

Go to latest
Published: Sep 26, 2024 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	HashAlg_name = map[int32]string{
		0: "SHA_256",
		1: "KECCAK_256",
		2: "POSEIDON",
		3: "NONE",
	}
	HashAlg_value = map[string]int32{
		"SHA_256":    0,
		"KECCAK_256": 1,
		"POSEIDON":   2,
		"NONE":       3,
	}
)

Enum value maps for HashAlg.

View Source
var (
	DataAvailabilityType_name = map[int32]string{
		0: "HOSTED",
		1: "IPFS",
		2: "IPNS",
	}
	DataAvailabilityType_value = map[string]int32{
		"HOSTED": 0,
		"IPFS":   1,
		"IPNS":   2,
	}
)

Enum value maps for DataAvailabilityType.

View Source
var (
	Network_name = map[int32]string{
		0: "ETHEREUM_MAINNET",
		1: "ETHEREUM_SEPOLIA",
		2: "GNOSIS_CHAIN",
		3: "POLYGON_CHAIN",
	}
	Network_value = map[string]int32{
		"ETHEREUM_MAINNET": 0,
		"ETHEREUM_SEPOLIA": 1,
		"GNOSIS_CHAIN":     2,
		"POLYGON_CHAIN":    3,
	}
)

Enum value maps for Network.

View Source
var (
	EncryptionAlg_name = map[int32]string{
		0: "A256GCM",
		1: "A256GCM_M",
		2: "RSA",
		3: "RSA_M",
	}
	EncryptionAlg_value = map[string]int32{
		"A256GCM":   0,
		"A256GCM_M": 1,
		"RSA":       2,
		"RSA_M":     3,
	}
)

Enum value maps for EncryptionAlg.

View Source
var (
	DidMethod_name = map[int32]string{
		0: "POLYGON_ID",
		1: "POLYGON_ID_TEST",
	}
	DidMethod_value = map[string]int32{
		"POLYGON_ID":      0,
		"POLYGON_ID_TEST": 1,
	}
)

Enum value maps for DidMethod.

View Source
var (
	PublishInterval_name = map[int32]string{
		0: "INTERVAL_5",
		1: "INTERVAL_15",
		2: "INTERVAL_60",
	}
	PublishInterval_value = map[string]int32{
		"INTERVAL_5":  0,
		"INTERVAL_15": 1,
		"INTERVAL_60": 2,
	}
)

Enum value maps for PublishInterval.

View Source
var (
	KeyType_name = map[int32]string{
		0: "EcP256k",
		1: "Rsa2048",
		2: "Rsa3072",
		3: "Rsa4096",
		4: "Aes128",
		5: "Aes256",
		6: "Bjj",
	}
	KeyType_value = map[string]int32{
		"EcP256k": 0,
		"Rsa2048": 1,
		"Rsa3072": 2,
		"Rsa4096": 3,
		"Aes128":  4,
		"Aes256":  5,
		"Bjj":     6,
	}
)

Enum value maps for KeyType.

View Source
var (
	KeyProtectionLevel_name = map[int32]string{
		0: "SOFTWARE",
		1: "HSM",
	}
	KeyProtectionLevel_value = map[string]int32{
		"SOFTWARE": 0,
		"HSM":      1,
	}
)

Enum value maps for KeyProtectionLevel.

View Source
var (
	AccessControlType_name = map[int32]string{
		0: "NO_ACCESS_CONTROL",
		1: "TOTP",
		2: "SECRET",
	}
	AccessControlType_value = map[string]int32{
		"NO_ACCESS_CONTROL": 0,
		"TOTP":              1,
		"SECRET":            2,
	}
)

Enum value maps for AccessControlType.

View Source
var (
	CertificateType_name = map[int32]string{
		0: "PEM",
		1: "PFX",
	}
	CertificateType_value = map[string]int32{
		"PEM": 0,
		"PFX": 1,
	}
)

Enum value maps for CertificateType.

View Source
var (
	RecordTypes_name = map[int32]string{
		0: "STRING",
		1: "HEX",
		2: "JSON",
		3: "BYTES",
		4: "FILE",
		5: "RECORD",
		6: "LOADER",
	}
	RecordTypes_value = map[string]int32{
		"STRING": 0,
		"HEX":    1,
		"JSON":   2,
		"BYTES":  3,
		"FILE":   4,
		"RECORD": 5,
		"LOADER": 6,
	}
)

Enum value maps for RecordTypes.

View Source
var AuthenticityService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.AuthenticityService",
	HandlerType: (*AuthenticityServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Sign",
			Handler:    _AuthenticityService_Sign_Handler,
		},
		{
			MethodName: "Verify",
			Handler:    _AuthenticityService_Verify_Handler,
		},
		{
			MethodName: "GetSignatures",
			Handler:    _AuthenticityService_GetSignatures_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_authenticity.proto",
}

AuthenticityService_ServiceDesc is the grpc.ServiceDesc for AuthenticityService 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 AvailabilityService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.AvailabilityService",
	HandlerType: (*AvailabilityServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Publish",
			Handler:    _AvailabilityService_Publish_Handler,
		},
		{
			MethodName: "Retrieve",
			Handler:    _AvailabilityService_Retrieve_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_availability.proto",
}

AvailabilityService_ServiceDesc is the grpc.ServiceDesc for AvailabilityService 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 EncryptionService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.EncryptionService",
	HandlerType: (*EncryptionServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Encrypt",
			Handler:    _EncryptionService_Encrypt_Handler,
		},
		{
			MethodName: "Decrypt",
			Handler:    _EncryptionService_Decrypt_Handler,
		},
		{
			MethodName: "GetEncryptionAlg",
			Handler:    _EncryptionService_GetEncryptionAlg_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_encryption.proto",
}

EncryptionService_ServiceDesc is the grpc.ServiceDesc for EncryptionService 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_bloock_authenticity_entities_proto protoreflect.FileDescriptor
View Source
var File_bloock_authenticity_proto protoreflect.FileDescriptor
View Source
var File_bloock_availability_entities_proto protoreflect.FileDescriptor
View Source
var File_bloock_availability_proto protoreflect.FileDescriptor
View Source
var File_bloock_config_proto protoreflect.FileDescriptor
View Source
var File_bloock_encryption_entities_proto protoreflect.FileDescriptor
View Source
var File_bloock_encryption_proto protoreflect.FileDescriptor
View Source
var File_bloock_identity_core_proto protoreflect.FileDescriptor
View Source
var File_bloock_identity_entities_proto protoreflect.FileDescriptor
View Source
var File_bloock_identity_proto protoreflect.FileDescriptor
View Source
var File_bloock_integrity_entities_proto protoreflect.FileDescriptor
View Source
var File_bloock_integrity_proto protoreflect.FileDescriptor
View Source
var File_bloock_keys_entities_proto protoreflect.FileDescriptor
View Source
var File_bloock_keys_proto protoreflect.FileDescriptor
View Source
var File_bloock_record_entities_proto protoreflect.FileDescriptor
View Source
var File_bloock_record_proto protoreflect.FileDescriptor
View Source
var File_bloock_shared_proto protoreflect.FileDescriptor
View Source
var File_bloock_webhook_proto protoreflect.FileDescriptor
View Source
var IdentityCoreService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.IdentityCoreService",
	HandlerType: (*IdentityCoreServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateCoreCredential",
			Handler:    _IdentityCoreService_CreateCoreCredential_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_identity_core.proto",
}

IdentityCoreService_ServiceDesc is the grpc.ServiceDesc for IdentityCoreService 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 IdentityService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.IdentityService",
	HandlerType: (*IdentityServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateHolder",
			Handler:    _IdentityService_CreateHolder_Handler,
		},
		{
			MethodName: "CreateIssuer",
			Handler:    _IdentityService_CreateIssuer_Handler,
		},
		{
			MethodName: "ImportIssuer",
			Handler:    _IdentityService_ImportIssuer_Handler,
		},
		{
			MethodName: "BuildSchema",
			Handler:    _IdentityService_BuildSchema_Handler,
		},
		{
			MethodName: "GetSchema",
			Handler:    _IdentityService_GetSchema_Handler,
		},
		{
			MethodName: "CreateCredential",
			Handler:    _IdentityService_CreateCredential_Handler,
		},
		{
			MethodName: "GetCredential",
			Handler:    _IdentityService_GetCredential_Handler,
		},
		{
			MethodName: "GetCredentialProof",
			Handler:    _IdentityService_GetCredentialProof_Handler,
		},
		{
			MethodName: "RevokeCredential",
			Handler:    _IdentityService_RevokeCredential_Handler,
		},
		{
			MethodName: "CredentialToJson",
			Handler:    _IdentityService_CredentialToJson_Handler,
		},
		{
			MethodName: "CredentialFromJson",
			Handler:    _IdentityService_CredentialFromJson_Handler,
		},
		{
			MethodName: "GetCredentialOffer",
			Handler:    _IdentityService_GetCredentialOffer_Handler,
		},
		{
			MethodName: "ForcePublishIssuerState",
			Handler:    _IdentityService_ForcePublishIssuerState_Handler,
		},
		{
			MethodName: "CreateVerification",
			Handler:    _IdentityService_CreateVerification_Handler,
		},
		{
			MethodName: "WaitVerification",
			Handler:    _IdentityService_WaitVerification_Handler,
		},
		{
			MethodName: "GetVerificationStatus",
			Handler:    _IdentityService_GetVerificationStatus_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_identity.proto",
}

IdentityService_ServiceDesc is the grpc.ServiceDesc for IdentityService 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 IntegrityService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.IntegrityService",
	HandlerType: (*IntegrityServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SendRecords",
			Handler:    _IntegrityService_SendRecords_Handler,
		},
		{
			MethodName: "GetAnchor",
			Handler:    _IntegrityService_GetAnchor_Handler,
		},
		{
			MethodName: "WaitAnchor",
			Handler:    _IntegrityService_WaitAnchor_Handler,
		},
		{
			MethodName: "GetProof",
			Handler:    _IntegrityService_GetProof_Handler,
		},
		{
			MethodName: "ValidateRoot",
			Handler:    _IntegrityService_ValidateRoot_Handler,
		},
		{
			MethodName: "VerifyProof",
			Handler:    _IntegrityService_VerifyProof_Handler,
		},
		{
			MethodName: "VerifyRecords",
			Handler:    _IntegrityService_VerifyRecords_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_integrity.proto",
}

IntegrityService_ServiceDesc is the grpc.ServiceDesc for IntegrityService 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 KeyService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.KeyService",
	HandlerType: (*KeyServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GenerateLocalKey",
			Handler:    _KeyService_GenerateLocalKey_Handler,
		},
		{
			MethodName: "LoadLocalKey",
			Handler:    _KeyService_LoadLocalKey_Handler,
		},
		{
			MethodName: "GenerateManagedKey",
			Handler:    _KeyService_GenerateManagedKey_Handler,
		},
		{
			MethodName: "LoadManagedKey",
			Handler:    _KeyService_LoadManagedKey_Handler,
		},
		{
			MethodName: "GenerateLocalCertificate",
			Handler:    _KeyService_GenerateLocalCertificate_Handler,
		},
		{
			MethodName: "LoadLocalCertificate",
			Handler:    _KeyService_LoadLocalCertificate_Handler,
		},
		{
			MethodName: "GenerateManagedCertificate",
			Handler:    _KeyService_GenerateManagedCertificate_Handler,
		},
		{
			MethodName: "LoadManagedCertificate",
			Handler:    _KeyService_LoadManagedCertificate_Handler,
		},
		{
			MethodName: "ImportManagedCertificate",
			Handler:    _KeyService_ImportManagedCertificate_Handler,
		},
		{
			MethodName: "SetupTotpAccessControl",
			Handler:    _KeyService_SetupTotpAccessControl_Handler,
		},
		{
			MethodName: "SetupSecretAccessControl",
			Handler:    _KeyService_SetupSecretAccessControl_Handler,
		},
		{
			MethodName: "RecoverTotpAccessControl",
			Handler:    _KeyService_RecoverTotpAccessControl_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_keys.proto",
}

KeyService_ServiceDesc is the grpc.ServiceDesc for KeyService 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 RecordService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.RecordService",
	HandlerType: (*RecordServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "BuildRecordFromString",
			Handler:    _RecordService_BuildRecordFromString_Handler,
		},
		{
			MethodName: "BuildRecordFromHex",
			Handler:    _RecordService_BuildRecordFromHex_Handler,
		},
		{
			MethodName: "BuildRecordFromJson",
			Handler:    _RecordService_BuildRecordFromJson_Handler,
		},
		{
			MethodName: "BuildRecordFromFile",
			Handler:    _RecordService_BuildRecordFromFile_Handler,
		},
		{
			MethodName: "BuildRecordFromBytes",
			Handler:    _RecordService_BuildRecordFromBytes_Handler,
		},
		{
			MethodName: "BuildRecordFromRecord",
			Handler:    _RecordService_BuildRecordFromRecord_Handler,
		},
		{
			MethodName: "BuildRecordFromLoader",
			Handler:    _RecordService_BuildRecordFromLoader_Handler,
		},
		{
			MethodName: "GetDetails",
			Handler:    _RecordService_GetDetails_Handler,
		},
		{
			MethodName: "GetHash",
			Handler:    _RecordService_GetHash_Handler,
		},
		{
			MethodName: "GetPayload",
			Handler:    _RecordService_GetPayload_Handler,
		},
		{
			MethodName: "SetProof",
			Handler:    _RecordService_SetProof_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_record.proto",
}

RecordService_ServiceDesc is the grpc.ServiceDesc for RecordService 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 WebhookService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "bloock.WebhookService",
	HandlerType: (*WebhookServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "VerifyWebhookSignature",
			Handler:    _WebhookService_VerifyWebhookSignature_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "bloock_webhook.proto",
}

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

Functions

func RegisterAuthenticityServiceServer added in v2.4.0

func RegisterAuthenticityServiceServer(s grpc.ServiceRegistrar, srv AuthenticityServiceServer)

func RegisterAvailabilityServiceServer added in v2.4.0

func RegisterAvailabilityServiceServer(s grpc.ServiceRegistrar, srv AvailabilityServiceServer)

func RegisterEncryptionServiceServer added in v2.4.0

func RegisterEncryptionServiceServer(s grpc.ServiceRegistrar, srv EncryptionServiceServer)

func RegisterIdentityCoreServiceServer added in v2.8.0

func RegisterIdentityCoreServiceServer(s grpc.ServiceRegistrar, srv IdentityCoreServiceServer)

func RegisterIdentityServiceServer added in v2.5.0

func RegisterIdentityServiceServer(s grpc.ServiceRegistrar, srv IdentityServiceServer)

func RegisterIntegrityServiceServer added in v2.4.0

func RegisterIntegrityServiceServer(s grpc.ServiceRegistrar, srv IntegrityServiceServer)

func RegisterKeyServiceServer added in v2.5.0

func RegisterKeyServiceServer(s grpc.ServiceRegistrar, srv KeyServiceServer)

func RegisterRecordServiceServer

func RegisterRecordServiceServer(s grpc.ServiceRegistrar, srv RecordServiceServer)

func RegisterWebhookServiceServer added in v2.2.1

func RegisterWebhookServiceServer(s grpc.ServiceRegistrar, srv WebhookServiceServer)

Types

type AccessControl added in v2.8.0

type AccessControl struct {
	AccessControlTotp   *AccessControlTotp   `protobuf:"bytes,1,opt,name=access_control_totp,json=accessControlTotp,proto3,oneof" json:"access_control_totp,omitempty"`
	AccessControlSecret *AccessControlSecret `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AccessControl) Descriptor deprecated added in v2.8.0

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

Deprecated: Use AccessControl.ProtoReflect.Descriptor instead.

func (*AccessControl) GetAccessControlSecret added in v2.8.0

func (x *AccessControl) GetAccessControlSecret() *AccessControlSecret

func (*AccessControl) GetAccessControlTotp added in v2.8.0

func (x *AccessControl) GetAccessControlTotp() *AccessControlTotp

func (*AccessControl) ProtoMessage added in v2.8.0

func (*AccessControl) ProtoMessage()

func (*AccessControl) ProtoReflect added in v2.8.0

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

func (*AccessControl) Reset added in v2.8.0

func (x *AccessControl) Reset()

func (*AccessControl) String added in v2.8.0

func (x *AccessControl) String() string

type AccessControlSecret added in v2.8.0

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

func (*AccessControlSecret) Descriptor deprecated added in v2.8.0

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

Deprecated: Use AccessControlSecret.ProtoReflect.Descriptor instead.

func (*AccessControlSecret) GetSecret added in v2.8.0

func (x *AccessControlSecret) GetSecret() string

func (*AccessControlSecret) ProtoMessage added in v2.8.0

func (*AccessControlSecret) ProtoMessage()

func (*AccessControlSecret) ProtoReflect added in v2.8.0

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

func (*AccessControlSecret) Reset added in v2.8.0

func (x *AccessControlSecret) Reset()

func (*AccessControlSecret) String added in v2.8.0

func (x *AccessControlSecret) String() string

type AccessControlTotp added in v2.8.0

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

func (*AccessControlTotp) Descriptor deprecated added in v2.8.0

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

Deprecated: Use AccessControlTotp.ProtoReflect.Descriptor instead.

func (*AccessControlTotp) GetCode added in v2.8.0

func (x *AccessControlTotp) GetCode() string

func (*AccessControlTotp) ProtoMessage added in v2.8.0

func (*AccessControlTotp) ProtoMessage()

func (*AccessControlTotp) ProtoReflect added in v2.8.0

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

func (*AccessControlTotp) Reset added in v2.8.0

func (x *AccessControlTotp) Reset()

func (*AccessControlTotp) String added in v2.8.0

func (x *AccessControlTotp) String() string

type AccessControlType added in v2.8.5

type AccessControlType int32
const (
	AccessControlType_NO_ACCESS_CONTROL AccessControlType = 0
	AccessControlType_TOTP              AccessControlType = 1
	AccessControlType_SECRET            AccessControlType = 2
)

func (AccessControlType) Descriptor added in v2.8.5

func (AccessControlType) Enum added in v2.8.5

func (AccessControlType) EnumDescriptor deprecated added in v2.8.5

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

Deprecated: Use AccessControlType.Descriptor instead.

func (AccessControlType) Number added in v2.8.5

func (AccessControlType) String added in v2.8.5

func (x AccessControlType) String() string

func (AccessControlType) Type added in v2.8.5

type Anchor

type Anchor struct {
	Id         int64            `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	BlockRoots []string         `protobuf:"bytes,2,rep,name=block_roots,json=blockRoots,proto3" json:"block_roots,omitempty"`
	Networks   []*AnchorNetwork `protobuf:"bytes,3,rep,name=networks,proto3" json:"networks,omitempty"`
	Root       string           `protobuf:"bytes,4,opt,name=root,proto3" json:"root,omitempty"`
	Status     string           `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*Anchor) Descriptor deprecated

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

Deprecated: Use Anchor.ProtoReflect.Descriptor instead.

func (*Anchor) GetBlockRoots

func (x *Anchor) GetBlockRoots() []string

func (*Anchor) GetId

func (x *Anchor) GetId() int64

func (*Anchor) GetNetworks

func (x *Anchor) GetNetworks() []*AnchorNetwork

func (*Anchor) GetRoot

func (x *Anchor) GetRoot() string

func (*Anchor) GetStatus

func (x *Anchor) GetStatus() string

func (*Anchor) ProtoMessage

func (*Anchor) ProtoMessage()

func (*Anchor) ProtoReflect

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

func (*Anchor) Reset

func (x *Anchor) Reset()

func (*Anchor) String

func (x *Anchor) String() string

type AnchorNetwork

type AnchorNetwork struct {
	Name   string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	State  string  `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	TxHash string  `protobuf:"bytes,3,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	Root   *string `protobuf:"bytes,4,opt,name=root,proto3,oneof" json:"root,omitempty"`
	// contains filtered or unexported fields
}

func (*AnchorNetwork) Descriptor deprecated

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

Deprecated: Use AnchorNetwork.ProtoReflect.Descriptor instead.

func (*AnchorNetwork) GetName

func (x *AnchorNetwork) GetName() string

func (*AnchorNetwork) GetRoot added in v2.7.0

func (x *AnchorNetwork) GetRoot() string

func (*AnchorNetwork) GetState

func (x *AnchorNetwork) GetState() string

func (*AnchorNetwork) GetTxHash

func (x *AnchorNetwork) GetTxHash() string

func (*AnchorNetwork) ProtoMessage

func (*AnchorNetwork) ProtoMessage()

func (*AnchorNetwork) ProtoReflect

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

func (*AnchorNetwork) Reset

func (x *AnchorNetwork) Reset()

func (*AnchorNetwork) String

func (x *AnchorNetwork) String() string

type AuthenticityDetails added in v2.7.0

type AuthenticityDetails struct {
	Signatures []*Signature `protobuf:"bytes,1,rep,name=signatures,proto3" json:"signatures,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthenticityDetails) Descriptor deprecated added in v2.7.0

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

Deprecated: Use AuthenticityDetails.ProtoReflect.Descriptor instead.

func (*AuthenticityDetails) GetSignatures added in v2.7.0

func (x *AuthenticityDetails) GetSignatures() []*Signature

func (*AuthenticityDetails) ProtoMessage added in v2.7.0

func (*AuthenticityDetails) ProtoMessage()

func (*AuthenticityDetails) ProtoReflect added in v2.7.0

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

func (*AuthenticityDetails) Reset added in v2.7.0

func (x *AuthenticityDetails) Reset()

func (*AuthenticityDetails) String added in v2.7.0

func (x *AuthenticityDetails) String() string

type AuthenticityServiceClient added in v2.4.0

type AuthenticityServiceClient interface {
	Sign(ctx context.Context, in *SignRequest, opts ...grpc.CallOption) (*SignResponse, error)
	Verify(ctx context.Context, in *VerifyRequest, opts ...grpc.CallOption) (*VerifyResponse, error)
	GetSignatures(ctx context.Context, in *GetSignaturesRequest, opts ...grpc.CallOption) (*GetSignaturesResponse, error)
}

AuthenticityServiceClient is the client API for AuthenticityService 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 NewAuthenticityServiceClient added in v2.4.0

func NewAuthenticityServiceClient(cc grpc.ClientConnInterface) AuthenticityServiceClient

type AuthenticityServiceServer added in v2.4.0

type AuthenticityServiceServer interface {
	Sign(context.Context, *SignRequest) (*SignResponse, error)
	Verify(context.Context, *VerifyRequest) (*VerifyResponse, error)
	GetSignatures(context.Context, *GetSignaturesRequest) (*GetSignaturesResponse, error)
	// contains filtered or unexported methods
}

AuthenticityServiceServer is the server API for AuthenticityService service. All implementations must embed UnimplementedAuthenticityServiceServer for forward compatibility

type AvailabilityDetails added in v2.7.0

type AvailabilityDetails struct {
	Size int64   `protobuf:"varint,1,opt,name=size,proto3" json:"size,omitempty"`
	Type *string `protobuf:"bytes,2,opt,name=type,proto3,oneof" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*AvailabilityDetails) Descriptor deprecated added in v2.7.0

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

Deprecated: Use AvailabilityDetails.ProtoReflect.Descriptor instead.

func (*AvailabilityDetails) GetSize added in v2.7.0

func (x *AvailabilityDetails) GetSize() int64

func (*AvailabilityDetails) GetType added in v2.7.0

func (x *AvailabilityDetails) GetType() string

func (*AvailabilityDetails) ProtoMessage added in v2.7.0

func (*AvailabilityDetails) ProtoMessage()

func (*AvailabilityDetails) ProtoReflect added in v2.7.0

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

func (*AvailabilityDetails) Reset added in v2.7.0

func (x *AvailabilityDetails) Reset()

func (*AvailabilityDetails) String added in v2.7.0

func (x *AvailabilityDetails) String() string

type AvailabilityServiceClient added in v2.4.0

type AvailabilityServiceClient interface {
	Publish(ctx context.Context, in *PublishRequest, opts ...grpc.CallOption) (*PublishResponse, error)
	Retrieve(ctx context.Context, in *RetrieveRequest, opts ...grpc.CallOption) (*RetrieveResponse, error)
}

AvailabilityServiceClient is the client API for AvailabilityService 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 NewAvailabilityServiceClient added in v2.4.0

func NewAvailabilityServiceClient(cc grpc.ClientConnInterface) AvailabilityServiceClient

type AvailabilityServiceServer added in v2.4.0

type AvailabilityServiceServer interface {
	Publish(context.Context, *PublishRequest) (*PublishResponse, error)
	Retrieve(context.Context, *RetrieveRequest) (*RetrieveResponse, error)
	// contains filtered or unexported methods
}

AvailabilityServiceServer is the server API for AvailabilityService service. All implementations must embed UnimplementedAvailabilityServiceServer for forward compatibility

type BooleanAttribute added in v2.5.0

type BooleanAttribute struct {
	Id    string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Value bool   `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*BooleanAttribute) Descriptor deprecated added in v2.5.0

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

Deprecated: Use BooleanAttribute.ProtoReflect.Descriptor instead.

func (*BooleanAttribute) GetId added in v2.5.0

func (x *BooleanAttribute) GetId() string

func (*BooleanAttribute) GetValue added in v2.5.0

func (x *BooleanAttribute) GetValue() bool

func (*BooleanAttribute) ProtoMessage added in v2.5.0

func (*BooleanAttribute) ProtoMessage()

func (*BooleanAttribute) ProtoReflect added in v2.5.0

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

func (*BooleanAttribute) Reset added in v2.5.0

func (x *BooleanAttribute) Reset()

func (*BooleanAttribute) String added in v2.5.0

func (x *BooleanAttribute) String() string

type BooleanAttributeDefinition added in v2.5.0

type BooleanAttributeDefinition struct {
	DisplayName string `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool   `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	// contains filtered or unexported fields
}

func (*BooleanAttributeDefinition) Descriptor deprecated added in v2.5.0

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

Deprecated: Use BooleanAttributeDefinition.ProtoReflect.Descriptor instead.

func (*BooleanAttributeDefinition) GetDescription added in v2.5.0

func (x *BooleanAttributeDefinition) GetDescription() string

func (*BooleanAttributeDefinition) GetDisplayName added in v2.5.0

func (x *BooleanAttributeDefinition) GetDisplayName() string

func (*BooleanAttributeDefinition) GetId added in v2.5.0

func (*BooleanAttributeDefinition) GetRequired added in v2.8.0

func (x *BooleanAttributeDefinition) GetRequired() bool

func (*BooleanAttributeDefinition) ProtoMessage added in v2.5.0

func (*BooleanAttributeDefinition) ProtoMessage()

func (*BooleanAttributeDefinition) ProtoReflect added in v2.5.0

func (*BooleanAttributeDefinition) Reset added in v2.5.0

func (x *BooleanAttributeDefinition) Reset()

func (*BooleanAttributeDefinition) String added in v2.5.0

func (x *BooleanAttributeDefinition) String() string

type BuildSchemaRequest added in v2.5.0

type BuildSchemaRequest struct {
	ConfigData            *ConfigData                       `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	DisplayName           string                            `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	SchemaType            string                            `protobuf:"bytes,3,opt,name=schema_type,json=schemaType,proto3" json:"schema_type,omitempty"`
	Version               string                            `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	Description           string                            `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
	StringAttributes      []*StringAttributeDefinition      `protobuf:"bytes,6,rep,name=string_attributes,json=stringAttributes,proto3" json:"string_attributes,omitempty"`
	IntegerAttributes     []*IntegerAttributeDefinition     `protobuf:"bytes,7,rep,name=integer_attributes,json=integerAttributes,proto3" json:"integer_attributes,omitempty"`
	DecimalAttributes     []*DecimalAttributeDefinition     `protobuf:"bytes,8,rep,name=decimal_attributes,json=decimalAttributes,proto3" json:"decimal_attributes,omitempty"`
	BooleanAttributes     []*BooleanAttributeDefinition     `protobuf:"bytes,9,rep,name=boolean_attributes,json=booleanAttributes,proto3" json:"boolean_attributes,omitempty"`
	DateAttributes        []*DateAttributeDefinition        `protobuf:"bytes,10,rep,name=date_attributes,json=dateAttributes,proto3" json:"date_attributes,omitempty"`
	DatetimeAttributes    []*DateTimeAttributeDefinition    `protobuf:"bytes,11,rep,name=datetime_attributes,json=datetimeAttributes,proto3" json:"datetime_attributes,omitempty"`
	StringEnumAttributes  []*StringEnumAttributeDefinition  `protobuf:"bytes,12,rep,name=string_enum_attributes,json=stringEnumAttributes,proto3" json:"string_enum_attributes,omitempty"`
	IntegerEnumAttributes []*IntegerEnumAttributeDefinition `` /* 127-byte string literal not displayed */
	DecimalEnumAttributes []*DecimalEnumAttributeDefinition `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*BuildSchemaRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use BuildSchemaRequest.ProtoReflect.Descriptor instead.

func (*BuildSchemaRequest) GetBooleanAttributes added in v2.5.0

func (x *BuildSchemaRequest) GetBooleanAttributes() []*BooleanAttributeDefinition

func (*BuildSchemaRequest) GetConfigData added in v2.5.0

func (x *BuildSchemaRequest) GetConfigData() *ConfigData

func (*BuildSchemaRequest) GetDateAttributes added in v2.5.0

func (x *BuildSchemaRequest) GetDateAttributes() []*DateAttributeDefinition

func (*BuildSchemaRequest) GetDatetimeAttributes added in v2.5.0

func (x *BuildSchemaRequest) GetDatetimeAttributes() []*DateTimeAttributeDefinition

func (*BuildSchemaRequest) GetDecimalAttributes added in v2.8.0

func (x *BuildSchemaRequest) GetDecimalAttributes() []*DecimalAttributeDefinition

func (*BuildSchemaRequest) GetDecimalEnumAttributes added in v2.8.0

func (x *BuildSchemaRequest) GetDecimalEnumAttributes() []*DecimalEnumAttributeDefinition

func (*BuildSchemaRequest) GetDescription added in v2.8.0

func (x *BuildSchemaRequest) GetDescription() string

func (*BuildSchemaRequest) GetDisplayName added in v2.5.0

func (x *BuildSchemaRequest) GetDisplayName() string

func (*BuildSchemaRequest) GetIntegerAttributes added in v2.8.0

func (x *BuildSchemaRequest) GetIntegerAttributes() []*IntegerAttributeDefinition

func (*BuildSchemaRequest) GetIntegerEnumAttributes added in v2.8.0

func (x *BuildSchemaRequest) GetIntegerEnumAttributes() []*IntegerEnumAttributeDefinition

func (*BuildSchemaRequest) GetSchemaType added in v2.8.0

func (x *BuildSchemaRequest) GetSchemaType() string

func (*BuildSchemaRequest) GetStringAttributes added in v2.5.7

func (x *BuildSchemaRequest) GetStringAttributes() []*StringAttributeDefinition

func (*BuildSchemaRequest) GetStringEnumAttributes added in v2.8.0

func (x *BuildSchemaRequest) GetStringEnumAttributes() []*StringEnumAttributeDefinition

func (*BuildSchemaRequest) GetVersion added in v2.8.0

func (x *BuildSchemaRequest) GetVersion() string

func (*BuildSchemaRequest) ProtoMessage added in v2.5.0

func (*BuildSchemaRequest) ProtoMessage()

func (*BuildSchemaRequest) ProtoReflect added in v2.5.0

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

func (*BuildSchemaRequest) Reset added in v2.5.0

func (x *BuildSchemaRequest) Reset()

func (*BuildSchemaRequest) String added in v2.5.0

func (x *BuildSchemaRequest) String() string

type BuildSchemaResponse added in v2.5.0

type BuildSchemaResponse struct {
	Schema *Schema `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*BuildSchemaResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use BuildSchemaResponse.ProtoReflect.Descriptor instead.

func (*BuildSchemaResponse) GetError added in v2.5.0

func (x *BuildSchemaResponse) GetError() *Error

func (*BuildSchemaResponse) GetSchema added in v2.5.0

func (x *BuildSchemaResponse) GetSchema() *Schema

func (*BuildSchemaResponse) ProtoMessage added in v2.5.0

func (*BuildSchemaResponse) ProtoMessage()

func (*BuildSchemaResponse) ProtoReflect added in v2.5.0

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

func (*BuildSchemaResponse) Reset added in v2.5.0

func (x *BuildSchemaResponse) Reset()

func (*BuildSchemaResponse) String added in v2.5.0

func (x *BuildSchemaResponse) String() string

type CertificateSubject added in v2.7.0

type CertificateSubject struct {
	CommonName         string  `protobuf:"bytes,1,opt,name=common_name,json=commonName,proto3" json:"common_name,omitempty"`
	OrganizationalUnit *string `protobuf:"bytes,2,opt,name=organizational_unit,json=organizationalUnit,proto3,oneof" json:"organizational_unit,omitempty"`
	Organization       *string `protobuf:"bytes,3,opt,name=organization,proto3,oneof" json:"organization,omitempty"`
	Location           *string `protobuf:"bytes,4,opt,name=location,proto3,oneof" json:"location,omitempty"`
	State              *string `protobuf:"bytes,5,opt,name=state,proto3,oneof" json:"state,omitempty"`
	Country            *string `protobuf:"bytes,6,opt,name=country,proto3,oneof" json:"country,omitempty"`
	// contains filtered or unexported fields
}

func (*CertificateSubject) Descriptor deprecated added in v2.7.0

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

Deprecated: Use CertificateSubject.ProtoReflect.Descriptor instead.

func (*CertificateSubject) GetCommonName added in v2.7.0

func (x *CertificateSubject) GetCommonName() string

func (*CertificateSubject) GetCountry added in v2.7.0

func (x *CertificateSubject) GetCountry() string

func (*CertificateSubject) GetLocation added in v2.7.0

func (x *CertificateSubject) GetLocation() string

func (*CertificateSubject) GetOrganization added in v2.7.0

func (x *CertificateSubject) GetOrganization() string

func (*CertificateSubject) GetOrganizationalUnit added in v2.7.0

func (x *CertificateSubject) GetOrganizationalUnit() string

func (*CertificateSubject) GetState added in v2.7.0

func (x *CertificateSubject) GetState() string

func (*CertificateSubject) ProtoMessage added in v2.7.0

func (*CertificateSubject) ProtoMessage()

func (*CertificateSubject) ProtoReflect added in v2.7.0

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

func (*CertificateSubject) Reset added in v2.7.0

func (x *CertificateSubject) Reset()

func (*CertificateSubject) String added in v2.7.0

func (x *CertificateSubject) String() string

type CertificateType added in v2.7.0

type CertificateType int32
const (
	CertificateType_PEM CertificateType = 0
	CertificateType_PFX CertificateType = 1
)

func (CertificateType) Descriptor added in v2.7.0

func (CertificateType) Enum added in v2.7.0

func (x CertificateType) Enum() *CertificateType

func (CertificateType) EnumDescriptor deprecated added in v2.7.0

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

Deprecated: Use CertificateType.Descriptor instead.

func (CertificateType) Number added in v2.7.0

func (CertificateType) String added in v2.7.0

func (x CertificateType) String() string

func (CertificateType) Type added in v2.7.0

type ConfigData

type ConfigData struct {
	Config         *Configuration           `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	NetworksConfig map[int32]*NetworkConfig `` /* 192-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ConfigData) Descriptor deprecated

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

Deprecated: Use ConfigData.ProtoReflect.Descriptor instead.

func (*ConfigData) GetConfig

func (x *ConfigData) GetConfig() *Configuration

func (*ConfigData) GetNetworksConfig

func (x *ConfigData) GetNetworksConfig() map[int32]*NetworkConfig

func (*ConfigData) ProtoMessage

func (*ConfigData) ProtoMessage()

func (*ConfigData) ProtoReflect

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

func (*ConfigData) Reset

func (x *ConfigData) Reset()

func (*ConfigData) String

func (x *ConfigData) String() string

type Configuration

type Configuration struct {
	LibraryName                string  `protobuf:"bytes,1,opt,name=library_name,json=libraryName,proto3" json:"library_name,omitempty"`
	Host                       string  `protobuf:"bytes,2,opt,name=host,proto3" json:"host,omitempty"`
	ApiKey                     string  `protobuf:"bytes,3,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
	WaitMessageIntervalFactor  int32   `` /* 141-byte string literal not displayed */
	WaitMessageIntervalDefault int32   `` /* 144-byte string literal not displayed */
	KeyTypeAlgorithm           string  `protobuf:"bytes,6,opt,name=key_type_algorithm,json=keyTypeAlgorithm,proto3" json:"key_type_algorithm,omitempty"`
	EllipticCurveKey           string  `protobuf:"bytes,7,opt,name=elliptic_curve_key,json=ellipticCurveKey,proto3" json:"elliptic_curve_key,omitempty"`
	SignatureAlgorithm         string  `protobuf:"bytes,8,opt,name=signature_algorithm,json=signatureAlgorithm,proto3" json:"signature_algorithm,omitempty"`
	IdentityApiHost            *string `protobuf:"bytes,9,opt,name=identityApiHost,proto3,oneof" json:"identityApiHost,omitempty"`
	// contains filtered or unexported fields
}

func (*Configuration) Descriptor deprecated

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

Deprecated: Use Configuration.ProtoReflect.Descriptor instead.

func (*Configuration) GetApiKey

func (x *Configuration) GetApiKey() string

func (*Configuration) GetEllipticCurveKey

func (x *Configuration) GetEllipticCurveKey() string

func (*Configuration) GetHost

func (x *Configuration) GetHost() string

func (*Configuration) GetIdentityApiHost added in v2.7.0

func (x *Configuration) GetIdentityApiHost() string

func (*Configuration) GetKeyTypeAlgorithm

func (x *Configuration) GetKeyTypeAlgorithm() string

func (*Configuration) GetLibraryName added in v2.0.2

func (x *Configuration) GetLibraryName() string

func (*Configuration) GetSignatureAlgorithm

func (x *Configuration) GetSignatureAlgorithm() string

func (*Configuration) GetWaitMessageIntervalDefault

func (x *Configuration) GetWaitMessageIntervalDefault() int32

func (*Configuration) GetWaitMessageIntervalFactor

func (x *Configuration) GetWaitMessageIntervalFactor() int32

func (*Configuration) ProtoMessage

func (*Configuration) ProtoMessage()

func (*Configuration) ProtoReflect

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

func (*Configuration) Reset

func (x *Configuration) Reset()

func (*Configuration) String

func (x *Configuration) String() string

type CreateCoreCredentialRequest added in v2.8.0

type CreateCoreCredentialRequest struct {
	ConfigData         *ConfigData          `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	SchemaId           string               `protobuf:"bytes,2,opt,name=schema_id,json=schemaId,proto3" json:"schema_id,omitempty"`
	IssuerDid          string               `protobuf:"bytes,3,opt,name=issuer_did,json=issuerDid,proto3" json:"issuer_did,omitempty"`
	HolderDid          string               `protobuf:"bytes,4,opt,name=holder_did,json=holderDid,proto3" json:"holder_did,omitempty"`
	Expiration         int64                `protobuf:"varint,5,opt,name=expiration,proto3" json:"expiration,omitempty"`
	Version            *int32               `protobuf:"varint,6,opt,name=version,proto3,oneof" json:"version,omitempty"`
	Key                *Key                 `protobuf:"bytes,7,opt,name=key,proto3" json:"key,omitempty"`
	StringAttributes   []*StringAttribute   `protobuf:"bytes,8,rep,name=string_attributes,json=stringAttributes,proto3" json:"string_attributes,omitempty"`
	IntegerAttributes  []*IntegerAttribute  `protobuf:"bytes,9,rep,name=integer_attributes,json=integerAttributes,proto3" json:"integer_attributes,omitempty"`
	DecimalAttributes  []*DecimalAttribute  `protobuf:"bytes,10,rep,name=decimal_attributes,json=decimalAttributes,proto3" json:"decimal_attributes,omitempty"`
	BooleanAttributes  []*BooleanAttribute  `protobuf:"bytes,11,rep,name=boolean_attributes,json=booleanAttributes,proto3" json:"boolean_attributes,omitempty"`
	DateAttributes     []*DateAttribute     `protobuf:"bytes,12,rep,name=date_attributes,json=dateAttributes,proto3" json:"date_attributes,omitempty"`
	DatetimeAttributes []*DateTimeAttribute `protobuf:"bytes,13,rep,name=datetime_attributes,json=datetimeAttributes,proto3" json:"datetime_attributes,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCoreCredentialRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use CreateCoreCredentialRequest.ProtoReflect.Descriptor instead.

func (*CreateCoreCredentialRequest) GetBooleanAttributes added in v2.8.0

func (x *CreateCoreCredentialRequest) GetBooleanAttributes() []*BooleanAttribute

func (*CreateCoreCredentialRequest) GetConfigData added in v2.8.0

func (x *CreateCoreCredentialRequest) GetConfigData() *ConfigData

func (*CreateCoreCredentialRequest) GetDateAttributes added in v2.8.0

func (x *CreateCoreCredentialRequest) GetDateAttributes() []*DateAttribute

func (*CreateCoreCredentialRequest) GetDatetimeAttributes added in v2.8.0

func (x *CreateCoreCredentialRequest) GetDatetimeAttributes() []*DateTimeAttribute

func (*CreateCoreCredentialRequest) GetDecimalAttributes added in v2.8.0

func (x *CreateCoreCredentialRequest) GetDecimalAttributes() []*DecimalAttribute

func (*CreateCoreCredentialRequest) GetExpiration added in v2.8.0

func (x *CreateCoreCredentialRequest) GetExpiration() int64

func (*CreateCoreCredentialRequest) GetHolderDid added in v2.8.0

func (x *CreateCoreCredentialRequest) GetHolderDid() string

func (*CreateCoreCredentialRequest) GetIntegerAttributes added in v2.8.0

func (x *CreateCoreCredentialRequest) GetIntegerAttributes() []*IntegerAttribute

func (*CreateCoreCredentialRequest) GetIssuerDid added in v2.8.0

func (x *CreateCoreCredentialRequest) GetIssuerDid() string

func (*CreateCoreCredentialRequest) GetKey added in v2.8.0

func (x *CreateCoreCredentialRequest) GetKey() *Key

func (*CreateCoreCredentialRequest) GetSchemaId added in v2.8.0

func (x *CreateCoreCredentialRequest) GetSchemaId() string

func (*CreateCoreCredentialRequest) GetStringAttributes added in v2.8.0

func (x *CreateCoreCredentialRequest) GetStringAttributes() []*StringAttribute

func (*CreateCoreCredentialRequest) GetVersion added in v2.8.0

func (x *CreateCoreCredentialRequest) GetVersion() int32

func (*CreateCoreCredentialRequest) ProtoMessage added in v2.8.0

func (*CreateCoreCredentialRequest) ProtoMessage()

func (*CreateCoreCredentialRequest) ProtoReflect added in v2.8.0

func (*CreateCoreCredentialRequest) Reset added in v2.8.0

func (x *CreateCoreCredentialRequest) Reset()

func (*CreateCoreCredentialRequest) String added in v2.8.0

func (x *CreateCoreCredentialRequest) String() string

type CreateCoreCredentialResponse added in v2.8.0

type CreateCoreCredentialResponse struct {
	CredentialReceipt *CredentialReceipt `protobuf:"bytes,1,opt,name=credential_receipt,json=credentialReceipt,proto3" json:"credential_receipt,omitempty"`
	Error             *Error             `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCoreCredentialResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use CreateCoreCredentialResponse.ProtoReflect.Descriptor instead.

func (*CreateCoreCredentialResponse) GetCredentialReceipt added in v2.8.0

func (x *CreateCoreCredentialResponse) GetCredentialReceipt() *CredentialReceipt

func (*CreateCoreCredentialResponse) GetError added in v2.8.0

func (x *CreateCoreCredentialResponse) GetError() *Error

func (*CreateCoreCredentialResponse) ProtoMessage added in v2.8.0

func (*CreateCoreCredentialResponse) ProtoMessage()

func (*CreateCoreCredentialResponse) ProtoReflect added in v2.8.0

func (*CreateCoreCredentialResponse) Reset added in v2.8.0

func (x *CreateCoreCredentialResponse) Reset()

func (*CreateCoreCredentialResponse) String added in v2.8.0

type CreateCredentialRequest added in v2.5.0

type CreateCredentialRequest struct {
	ConfigData         *ConfigData          `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	SchemaId           string               `protobuf:"bytes,2,opt,name=schema_id,json=schemaId,proto3" json:"schema_id,omitempty"`
	HolderDid          string               `protobuf:"bytes,3,opt,name=holder_did,json=holderDid,proto3" json:"holder_did,omitempty"`
	Expiration         int64                `protobuf:"varint,4,opt,name=expiration,proto3" json:"expiration,omitempty"`
	Version            *int32               `protobuf:"varint,5,opt,name=version,proto3,oneof" json:"version,omitempty"`
	Key                *Key                 `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"`
	StringAttributes   []*StringAttribute   `protobuf:"bytes,7,rep,name=string_attributes,json=stringAttributes,proto3" json:"string_attributes,omitempty"`
	IntegerAttributes  []*IntegerAttribute  `protobuf:"bytes,8,rep,name=integer_attributes,json=integerAttributes,proto3" json:"integer_attributes,omitempty"`
	DecimalAttributes  []*DecimalAttribute  `protobuf:"bytes,9,rep,name=decimal_attributes,json=decimalAttributes,proto3" json:"decimal_attributes,omitempty"`
	BooleanAttributes  []*BooleanAttribute  `protobuf:"bytes,10,rep,name=boolean_attributes,json=booleanAttributes,proto3" json:"boolean_attributes,omitempty"`
	DateAttributes     []*DateAttribute     `protobuf:"bytes,11,rep,name=date_attributes,json=dateAttributes,proto3" json:"date_attributes,omitempty"`
	DatetimeAttributes []*DateTimeAttribute `protobuf:"bytes,12,rep,name=datetime_attributes,json=datetimeAttributes,proto3" json:"datetime_attributes,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCredentialRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CreateCredentialRequest.ProtoReflect.Descriptor instead.

func (*CreateCredentialRequest) GetBooleanAttributes added in v2.5.0

func (x *CreateCredentialRequest) GetBooleanAttributes() []*BooleanAttribute

func (*CreateCredentialRequest) GetConfigData added in v2.5.0

func (x *CreateCredentialRequest) GetConfigData() *ConfigData

func (*CreateCredentialRequest) GetDateAttributes added in v2.5.0

func (x *CreateCredentialRequest) GetDateAttributes() []*DateAttribute

func (*CreateCredentialRequest) GetDatetimeAttributes added in v2.5.0

func (x *CreateCredentialRequest) GetDatetimeAttributes() []*DateTimeAttribute

func (*CreateCredentialRequest) GetDecimalAttributes added in v2.8.0

func (x *CreateCredentialRequest) GetDecimalAttributes() []*DecimalAttribute

func (*CreateCredentialRequest) GetExpiration added in v2.8.0

func (x *CreateCredentialRequest) GetExpiration() int64

func (*CreateCredentialRequest) GetHolderDid added in v2.8.0

func (x *CreateCredentialRequest) GetHolderDid() string

func (*CreateCredentialRequest) GetIntegerAttributes added in v2.8.0

func (x *CreateCredentialRequest) GetIntegerAttributes() []*IntegerAttribute

func (*CreateCredentialRequest) GetKey added in v2.8.0

func (x *CreateCredentialRequest) GetKey() *Key

func (*CreateCredentialRequest) GetSchemaId added in v2.5.0

func (x *CreateCredentialRequest) GetSchemaId() string

func (*CreateCredentialRequest) GetStringAttributes added in v2.5.7

func (x *CreateCredentialRequest) GetStringAttributes() []*StringAttribute

func (*CreateCredentialRequest) GetVersion added in v2.8.0

func (x *CreateCredentialRequest) GetVersion() int32

func (*CreateCredentialRequest) ProtoMessage added in v2.5.0

func (*CreateCredentialRequest) ProtoMessage()

func (*CreateCredentialRequest) ProtoReflect added in v2.5.0

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

func (*CreateCredentialRequest) Reset added in v2.5.0

func (x *CreateCredentialRequest) Reset()

func (*CreateCredentialRequest) String added in v2.5.0

func (x *CreateCredentialRequest) String() string

type CreateCredentialResponse added in v2.5.0

type CreateCredentialResponse struct {
	CredentialReceipt *CredentialReceipt `protobuf:"bytes,1,opt,name=credential_receipt,json=credentialReceipt,proto3" json:"credential_receipt,omitempty"`
	Error             *Error             `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCredentialResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CreateCredentialResponse.ProtoReflect.Descriptor instead.

func (*CreateCredentialResponse) GetCredentialReceipt added in v2.5.0

func (x *CreateCredentialResponse) GetCredentialReceipt() *CredentialReceipt

func (*CreateCredentialResponse) GetError added in v2.5.0

func (x *CreateCredentialResponse) GetError() *Error

func (*CreateCredentialResponse) ProtoMessage added in v2.5.0

func (*CreateCredentialResponse) ProtoMessage()

func (*CreateCredentialResponse) ProtoReflect added in v2.5.0

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

func (*CreateCredentialResponse) Reset added in v2.5.0

func (x *CreateCredentialResponse) Reset()

func (*CreateCredentialResponse) String added in v2.5.0

func (x *CreateCredentialResponse) String() string

type CreateHolderRequest added in v2.8.0

type CreateHolderRequest struct {
	Key        *Key        `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	ConfigData *ConfigData `protobuf:"bytes,2,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	DidMethod  DidMethod   `protobuf:"varint,3,opt,name=did_method,json=didMethod,proto3,enum=bloock.DidMethod" json:"did_method,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateHolderRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use CreateHolderRequest.ProtoReflect.Descriptor instead.

func (*CreateHolderRequest) GetConfigData added in v2.8.0

func (x *CreateHolderRequest) GetConfigData() *ConfigData

func (*CreateHolderRequest) GetDidMethod added in v2.8.0

func (x *CreateHolderRequest) GetDidMethod() DidMethod

func (*CreateHolderRequest) GetKey added in v2.8.0

func (x *CreateHolderRequest) GetKey() *Key

func (*CreateHolderRequest) ProtoMessage added in v2.8.0

func (*CreateHolderRequest) ProtoMessage()

func (*CreateHolderRequest) ProtoReflect added in v2.8.0

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

func (*CreateHolderRequest) Reset added in v2.8.0

func (x *CreateHolderRequest) Reset()

func (*CreateHolderRequest) String added in v2.8.0

func (x *CreateHolderRequest) String() string

type CreateHolderResponse added in v2.8.0

type CreateHolderResponse struct {
	Did   string `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
	Error *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateHolderResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use CreateHolderResponse.ProtoReflect.Descriptor instead.

func (*CreateHolderResponse) GetDid added in v2.8.0

func (x *CreateHolderResponse) GetDid() string

func (*CreateHolderResponse) GetError added in v2.8.0

func (x *CreateHolderResponse) GetError() *Error

func (*CreateHolderResponse) ProtoMessage added in v2.8.0

func (*CreateHolderResponse) ProtoMessage()

func (*CreateHolderResponse) ProtoReflect added in v2.8.0

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

func (*CreateHolderResponse) Reset added in v2.8.0

func (x *CreateHolderResponse) Reset()

func (*CreateHolderResponse) String added in v2.8.0

func (x *CreateHolderResponse) String() string

type CreateIssuerRequest added in v2.6.0

type CreateIssuerRequest struct {
	Key             *Key            `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	ConfigData      *ConfigData     `protobuf:"bytes,2,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	DidMethod       DidMethod       `protobuf:"varint,3,opt,name=did_method,json=didMethod,proto3,enum=bloock.DidMethod" json:"did_method,omitempty"`
	Name            *string         `protobuf:"bytes,4,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Description     *string         `protobuf:"bytes,5,opt,name=description,proto3,oneof" json:"description,omitempty"`
	Image           *string         `protobuf:"bytes,6,opt,name=image,proto3,oneof" json:"image,omitempty"`
	PublishInterval PublishInterval `` /* 135-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateIssuerRequest) Descriptor deprecated added in v2.6.0

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

Deprecated: Use CreateIssuerRequest.ProtoReflect.Descriptor instead.

func (*CreateIssuerRequest) GetConfigData added in v2.6.0

func (x *CreateIssuerRequest) GetConfigData() *ConfigData

func (*CreateIssuerRequest) GetDescription added in v2.7.0

func (x *CreateIssuerRequest) GetDescription() string

func (*CreateIssuerRequest) GetDidMethod added in v2.8.0

func (x *CreateIssuerRequest) GetDidMethod() DidMethod

func (*CreateIssuerRequest) GetImage added in v2.7.0

func (x *CreateIssuerRequest) GetImage() string

func (*CreateIssuerRequest) GetKey added in v2.8.0

func (x *CreateIssuerRequest) GetKey() *Key

func (*CreateIssuerRequest) GetName added in v2.7.0

func (x *CreateIssuerRequest) GetName() string

func (*CreateIssuerRequest) GetPublishInterval added in v2.7.0

func (x *CreateIssuerRequest) GetPublishInterval() PublishInterval

func (*CreateIssuerRequest) ProtoMessage added in v2.6.0

func (*CreateIssuerRequest) ProtoMessage()

func (*CreateIssuerRequest) ProtoReflect added in v2.6.0

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

func (*CreateIssuerRequest) Reset added in v2.6.0

func (x *CreateIssuerRequest) Reset()

func (*CreateIssuerRequest) String added in v2.6.0

func (x *CreateIssuerRequest) String() string

type CreateIssuerResponse added in v2.6.0

type CreateIssuerResponse struct {
	Did   string `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
	Error *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateIssuerResponse) Descriptor deprecated added in v2.6.0

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

Deprecated: Use CreateIssuerResponse.ProtoReflect.Descriptor instead.

func (*CreateIssuerResponse) GetDid added in v2.6.0

func (x *CreateIssuerResponse) GetDid() string

func (*CreateIssuerResponse) GetError added in v2.6.0

func (x *CreateIssuerResponse) GetError() *Error

func (*CreateIssuerResponse) ProtoMessage added in v2.6.0

func (*CreateIssuerResponse) ProtoMessage()

func (*CreateIssuerResponse) ProtoReflect added in v2.6.0

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

func (*CreateIssuerResponse) Reset added in v2.6.0

func (x *CreateIssuerResponse) Reset()

func (*CreateIssuerResponse) String added in v2.6.0

func (x *CreateIssuerResponse) String() string

type CreateVerificationRequest added in v2.7.0

type CreateVerificationRequest struct {
	ConfigData   *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	ProofRequest string      `protobuf:"bytes,2,opt,name=proof_request,json=proofRequest,proto3" json:"proof_request,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateVerificationRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use CreateVerificationRequest.ProtoReflect.Descriptor instead.

func (*CreateVerificationRequest) GetConfigData added in v2.7.0

func (x *CreateVerificationRequest) GetConfigData() *ConfigData

func (*CreateVerificationRequest) GetProofRequest added in v2.7.0

func (x *CreateVerificationRequest) GetProofRequest() string

func (*CreateVerificationRequest) ProtoMessage added in v2.7.0

func (*CreateVerificationRequest) ProtoMessage()

func (*CreateVerificationRequest) ProtoReflect added in v2.7.0

func (*CreateVerificationRequest) Reset added in v2.7.0

func (x *CreateVerificationRequest) Reset()

func (*CreateVerificationRequest) String added in v2.7.0

func (x *CreateVerificationRequest) String() string

type CreateVerificationResponse added in v2.7.0

type CreateVerificationResponse struct {
	Result *VerificationReceipt `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  *Error               `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateVerificationResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use CreateVerificationResponse.ProtoReflect.Descriptor instead.

func (*CreateVerificationResponse) GetError added in v2.7.0

func (x *CreateVerificationResponse) GetError() *Error

func (*CreateVerificationResponse) GetResult added in v2.7.0

func (*CreateVerificationResponse) ProtoMessage added in v2.7.0

func (*CreateVerificationResponse) ProtoMessage()

func (*CreateVerificationResponse) ProtoReflect added in v2.7.0

func (*CreateVerificationResponse) Reset added in v2.7.0

func (x *CreateVerificationResponse) Reset()

func (*CreateVerificationResponse) String added in v2.7.0

func (x *CreateVerificationResponse) String() string

type Credential added in v2.5.0

type Credential struct {
	Context           []string          `protobuf:"bytes,1,rep,name=context,proto3" json:"context,omitempty"`
	Id                string            `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Type              []string          `protobuf:"bytes,3,rep,name=type,proto3" json:"type,omitempty"`
	IssuanceDate      string            `protobuf:"bytes,4,opt,name=issuance_date,json=issuanceDate,proto3" json:"issuance_date,omitempty"`
	Expiration        string            `protobuf:"bytes,5,opt,name=expiration,proto3" json:"expiration,omitempty"`
	CredentialSubject string            `protobuf:"bytes,6,opt,name=credential_subject,json=credentialSubject,proto3" json:"credential_subject,omitempty"`
	CredentialStatus  *CredentialStatus `protobuf:"bytes,7,opt,name=credential_status,json=credentialStatus,proto3" json:"credential_status,omitempty"`
	Issuer            string            `protobuf:"bytes,8,opt,name=issuer,proto3" json:"issuer,omitempty"`
	CredentialSchema  *CredentialSchema `protobuf:"bytes,9,opt,name=credential_schema,json=credentialSchema,proto3" json:"credential_schema,omitempty"`
	Proof             *CredentialProof  `protobuf:"bytes,10,opt,name=proof,proto3" json:"proof,omitempty"`
	// contains filtered or unexported fields
}

func (*Credential) Descriptor deprecated added in v2.5.0

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

Deprecated: Use Credential.ProtoReflect.Descriptor instead.

func (*Credential) GetContext added in v2.5.1

func (x *Credential) GetContext() []string

func (*Credential) GetCredentialSchema added in v2.5.1

func (x *Credential) GetCredentialSchema() *CredentialSchema

func (*Credential) GetCredentialStatus added in v2.5.1

func (x *Credential) GetCredentialStatus() *CredentialStatus

func (*Credential) GetCredentialSubject added in v2.5.1

func (x *Credential) GetCredentialSubject() string

func (*Credential) GetExpiration added in v2.8.0

func (x *Credential) GetExpiration() string

func (*Credential) GetId added in v2.5.1

func (x *Credential) GetId() string

func (*Credential) GetIssuanceDate added in v2.5.1

func (x *Credential) GetIssuanceDate() string

func (*Credential) GetIssuer added in v2.5.1

func (x *Credential) GetIssuer() string

func (*Credential) GetProof added in v2.5.1

func (x *Credential) GetProof() *CredentialProof

func (*Credential) GetType added in v2.5.1

func (x *Credential) GetType() []string

func (*Credential) ProtoMessage added in v2.5.0

func (*Credential) ProtoMessage()

func (*Credential) ProtoReflect added in v2.5.0

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

func (*Credential) Reset added in v2.5.0

func (x *Credential) Reset()

func (*Credential) String added in v2.5.0

func (x *Credential) String() string

type CredentialFromJsonRequest added in v2.5.0

type CredentialFromJsonRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Json       string      `protobuf:"bytes,2,opt,name=json,proto3" json:"json,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialFromJsonRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialFromJsonRequest.ProtoReflect.Descriptor instead.

func (*CredentialFromJsonRequest) GetConfigData added in v2.5.0

func (x *CredentialFromJsonRequest) GetConfigData() *ConfigData

func (*CredentialFromJsonRequest) GetJson added in v2.5.0

func (x *CredentialFromJsonRequest) GetJson() string

func (*CredentialFromJsonRequest) ProtoMessage added in v2.5.0

func (*CredentialFromJsonRequest) ProtoMessage()

func (*CredentialFromJsonRequest) ProtoReflect added in v2.5.0

func (*CredentialFromJsonRequest) Reset added in v2.5.0

func (x *CredentialFromJsonRequest) Reset()

func (*CredentialFromJsonRequest) String added in v2.5.0

func (x *CredentialFromJsonRequest) String() string

type CredentialFromJsonResponse added in v2.5.0

type CredentialFromJsonResponse struct {
	Credential *Credential `protobuf:"bytes,1,opt,name=credential,proto3" json:"credential,omitempty"`
	Error      *Error      `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialFromJsonResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialFromJsonResponse.ProtoReflect.Descriptor instead.

func (*CredentialFromJsonResponse) GetCredential added in v2.5.0

func (x *CredentialFromJsonResponse) GetCredential() *Credential

func (*CredentialFromJsonResponse) GetError added in v2.5.0

func (x *CredentialFromJsonResponse) GetError() *Error

func (*CredentialFromJsonResponse) ProtoMessage added in v2.5.0

func (*CredentialFromJsonResponse) ProtoMessage()

func (*CredentialFromJsonResponse) ProtoReflect added in v2.5.0

func (*CredentialFromJsonResponse) Reset added in v2.5.0

func (x *CredentialFromJsonResponse) Reset()

func (*CredentialFromJsonResponse) String added in v2.5.0

func (x *CredentialFromJsonResponse) String() string

type CredentialProof added in v2.5.0

type CredentialProof struct {
	SignatureProof string  `protobuf:"bytes,1,opt,name=signature_proof,json=signatureProof,proto3" json:"signature_proof,omitempty"`
	SparseMtProof  *string `protobuf:"bytes,2,opt,name=sparse_mt_proof,json=sparseMtProof,proto3,oneof" json:"sparse_mt_proof,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialProof) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialProof.ProtoReflect.Descriptor instead.

func (*CredentialProof) GetSignatureProof added in v2.5.0

func (x *CredentialProof) GetSignatureProof() string

func (*CredentialProof) GetSparseMtProof added in v2.8.0

func (x *CredentialProof) GetSparseMtProof() string

func (*CredentialProof) ProtoMessage added in v2.5.0

func (*CredentialProof) ProtoMessage()

func (*CredentialProof) ProtoReflect added in v2.5.0

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

func (*CredentialProof) Reset added in v2.5.0

func (x *CredentialProof) Reset()

func (*CredentialProof) String added in v2.5.0

func (x *CredentialProof) String() string

type CredentialReceipt added in v2.5.0

type CredentialReceipt struct {
	Credential     *Credential `protobuf:"bytes,1,opt,name=credential,proto3" json:"credential,omitempty"`
	CredentialId   string      `protobuf:"bytes,2,opt,name=credential_id,json=credentialId,proto3" json:"credential_id,omitempty"`
	CredentialType string      `protobuf:"bytes,3,opt,name=credential_type,json=credentialType,proto3" json:"credential_type,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialReceipt) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialReceipt.ProtoReflect.Descriptor instead.

func (*CredentialReceipt) GetCredential added in v2.8.0

func (x *CredentialReceipt) GetCredential() *Credential

func (*CredentialReceipt) GetCredentialId added in v2.8.0

func (x *CredentialReceipt) GetCredentialId() string

func (*CredentialReceipt) GetCredentialType added in v2.8.0

func (x *CredentialReceipt) GetCredentialType() string

func (*CredentialReceipt) ProtoMessage added in v2.5.0

func (*CredentialReceipt) ProtoMessage()

func (*CredentialReceipt) ProtoReflect added in v2.5.0

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

func (*CredentialReceipt) Reset added in v2.5.0

func (x *CredentialReceipt) Reset()

func (*CredentialReceipt) String added in v2.5.0

func (x *CredentialReceipt) String() string

type CredentialRevocation added in v2.5.0

type CredentialRevocation struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialRevocation) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialRevocation.ProtoReflect.Descriptor instead.

func (*CredentialRevocation) GetSuccess added in v2.5.0

func (x *CredentialRevocation) GetSuccess() bool

func (*CredentialRevocation) ProtoMessage added in v2.5.0

func (*CredentialRevocation) ProtoMessage()

func (*CredentialRevocation) ProtoReflect added in v2.5.0

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

func (*CredentialRevocation) Reset added in v2.5.0

func (x *CredentialRevocation) Reset()

func (*CredentialRevocation) String added in v2.5.0

func (x *CredentialRevocation) String() string

type CredentialSchema added in v2.5.0

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

func (*CredentialSchema) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialSchema.ProtoReflect.Descriptor instead.

func (*CredentialSchema) GetId added in v2.5.0

func (x *CredentialSchema) GetId() string

func (*CredentialSchema) GetType added in v2.5.0

func (x *CredentialSchema) GetType() string

func (*CredentialSchema) ProtoMessage added in v2.5.0

func (*CredentialSchema) ProtoMessage()

func (*CredentialSchema) ProtoReflect added in v2.5.0

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

func (*CredentialSchema) Reset added in v2.5.0

func (x *CredentialSchema) Reset()

func (*CredentialSchema) String added in v2.5.0

func (x *CredentialSchema) String() string

type CredentialStatus added in v2.5.0

type CredentialStatus struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	RevocationNonce int64  `protobuf:"varint,2,opt,name=revocation_nonce,json=revocationNonce,proto3" json:"revocation_nonce,omitempty"`
	Type            string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialStatus) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialStatus.ProtoReflect.Descriptor instead.

func (*CredentialStatus) GetId added in v2.5.0

func (x *CredentialStatus) GetId() string

func (*CredentialStatus) GetRevocationNonce added in v2.5.0

func (x *CredentialStatus) GetRevocationNonce() int64

func (*CredentialStatus) GetType added in v2.5.0

func (x *CredentialStatus) GetType() string

func (*CredentialStatus) ProtoMessage added in v2.5.0

func (*CredentialStatus) ProtoMessage()

func (*CredentialStatus) ProtoReflect added in v2.5.0

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

func (*CredentialStatus) Reset added in v2.5.0

func (x *CredentialStatus) Reset()

func (*CredentialStatus) String added in v2.5.0

func (x *CredentialStatus) String() string

type CredentialToJsonRequest added in v2.5.0

type CredentialToJsonRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Credential *Credential `protobuf:"bytes,2,opt,name=credential,proto3" json:"credential,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialToJsonRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialToJsonRequest.ProtoReflect.Descriptor instead.

func (*CredentialToJsonRequest) GetConfigData added in v2.5.0

func (x *CredentialToJsonRequest) GetConfigData() *ConfigData

func (*CredentialToJsonRequest) GetCredential added in v2.5.0

func (x *CredentialToJsonRequest) GetCredential() *Credential

func (*CredentialToJsonRequest) ProtoMessage added in v2.5.0

func (*CredentialToJsonRequest) ProtoMessage()

func (*CredentialToJsonRequest) ProtoReflect added in v2.5.0

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

func (*CredentialToJsonRequest) Reset added in v2.5.0

func (x *CredentialToJsonRequest) Reset()

func (*CredentialToJsonRequest) String added in v2.5.0

func (x *CredentialToJsonRequest) String() string

type CredentialToJsonResponse added in v2.5.0

type CredentialToJsonResponse struct {
	Json  string `protobuf:"bytes,1,opt,name=json,proto3" json:"json,omitempty"`
	Error *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CredentialToJsonResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use CredentialToJsonResponse.ProtoReflect.Descriptor instead.

func (*CredentialToJsonResponse) GetError added in v2.5.0

func (x *CredentialToJsonResponse) GetError() *Error

func (*CredentialToJsonResponse) GetJson added in v2.5.0

func (x *CredentialToJsonResponse) GetJson() string

func (*CredentialToJsonResponse) ProtoMessage added in v2.5.0

func (*CredentialToJsonResponse) ProtoMessage()

func (*CredentialToJsonResponse) ProtoReflect added in v2.5.0

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

func (*CredentialToJsonResponse) Reset added in v2.5.0

func (x *CredentialToJsonResponse) Reset()

func (*CredentialToJsonResponse) String added in v2.5.0

func (x *CredentialToJsonResponse) String() string

type DataAvailabilityType

type DataAvailabilityType int32
const (
	DataAvailabilityType_HOSTED DataAvailabilityType = 0
	DataAvailabilityType_IPFS   DataAvailabilityType = 1
	DataAvailabilityType_IPNS   DataAvailabilityType = 2
)

func (DataAvailabilityType) Descriptor

func (DataAvailabilityType) Enum

func (DataAvailabilityType) EnumDescriptor deprecated

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

Deprecated: Use DataAvailabilityType.Descriptor instead.

func (DataAvailabilityType) Number

func (DataAvailabilityType) String

func (x DataAvailabilityType) String() string

func (DataAvailabilityType) Type

type DateAttribute added in v2.5.0

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

func (*DateAttribute) Descriptor deprecated added in v2.5.0

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

Deprecated: Use DateAttribute.ProtoReflect.Descriptor instead.

func (*DateAttribute) GetId added in v2.5.0

func (x *DateAttribute) GetId() string

func (*DateAttribute) GetValue added in v2.5.0

func (x *DateAttribute) GetValue() string

func (*DateAttribute) ProtoMessage added in v2.5.0

func (*DateAttribute) ProtoMessage()

func (*DateAttribute) ProtoReflect added in v2.5.0

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

func (*DateAttribute) Reset added in v2.5.0

func (x *DateAttribute) Reset()

func (*DateAttribute) String added in v2.5.0

func (x *DateAttribute) String() string

type DateAttributeDefinition added in v2.5.0

type DateAttributeDefinition struct {
	DisplayName string `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool   `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	// contains filtered or unexported fields
}

func (*DateAttributeDefinition) Descriptor deprecated added in v2.5.0

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

Deprecated: Use DateAttributeDefinition.ProtoReflect.Descriptor instead.

func (*DateAttributeDefinition) GetDescription added in v2.5.0

func (x *DateAttributeDefinition) GetDescription() string

func (*DateAttributeDefinition) GetDisplayName added in v2.5.0

func (x *DateAttributeDefinition) GetDisplayName() string

func (*DateAttributeDefinition) GetId added in v2.5.0

func (x *DateAttributeDefinition) GetId() string

func (*DateAttributeDefinition) GetRequired added in v2.8.0

func (x *DateAttributeDefinition) GetRequired() bool

func (*DateAttributeDefinition) ProtoMessage added in v2.5.0

func (*DateAttributeDefinition) ProtoMessage()

func (*DateAttributeDefinition) ProtoReflect added in v2.5.0

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

func (*DateAttributeDefinition) Reset added in v2.5.0

func (x *DateAttributeDefinition) Reset()

func (*DateAttributeDefinition) String added in v2.5.0

func (x *DateAttributeDefinition) String() string

type DateTimeAttribute added in v2.5.0

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

func (*DateTimeAttribute) Descriptor deprecated added in v2.5.0

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

Deprecated: Use DateTimeAttribute.ProtoReflect.Descriptor instead.

func (*DateTimeAttribute) GetId added in v2.5.0

func (x *DateTimeAttribute) GetId() string

func (*DateTimeAttribute) GetValue added in v2.5.0

func (x *DateTimeAttribute) GetValue() string

func (*DateTimeAttribute) ProtoMessage added in v2.5.0

func (*DateTimeAttribute) ProtoMessage()

func (*DateTimeAttribute) ProtoReflect added in v2.5.0

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

func (*DateTimeAttribute) Reset added in v2.5.0

func (x *DateTimeAttribute) Reset()

func (*DateTimeAttribute) String added in v2.5.0

func (x *DateTimeAttribute) String() string

type DateTimeAttributeDefinition added in v2.5.0

type DateTimeAttributeDefinition struct {
	DisplayName string `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool   `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	// contains filtered or unexported fields
}

func (*DateTimeAttributeDefinition) Descriptor deprecated added in v2.5.0

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

Deprecated: Use DateTimeAttributeDefinition.ProtoReflect.Descriptor instead.

func (*DateTimeAttributeDefinition) GetDescription added in v2.5.0

func (x *DateTimeAttributeDefinition) GetDescription() string

func (*DateTimeAttributeDefinition) GetDisplayName added in v2.5.0

func (x *DateTimeAttributeDefinition) GetDisplayName() string

func (*DateTimeAttributeDefinition) GetId added in v2.5.0

func (*DateTimeAttributeDefinition) GetRequired added in v2.8.0

func (x *DateTimeAttributeDefinition) GetRequired() bool

func (*DateTimeAttributeDefinition) ProtoMessage added in v2.5.0

func (*DateTimeAttributeDefinition) ProtoMessage()

func (*DateTimeAttributeDefinition) ProtoReflect added in v2.5.0

func (*DateTimeAttributeDefinition) Reset added in v2.5.0

func (x *DateTimeAttributeDefinition) Reset()

func (*DateTimeAttributeDefinition) String added in v2.5.0

func (x *DateTimeAttributeDefinition) String() string

type DecimalAttribute added in v2.8.0

type DecimalAttribute struct {
	Id    string  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Value float64 `protobuf:"fixed64,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*DecimalAttribute) Descriptor deprecated added in v2.8.0

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

Deprecated: Use DecimalAttribute.ProtoReflect.Descriptor instead.

func (*DecimalAttribute) GetId added in v2.8.0

func (x *DecimalAttribute) GetId() string

func (*DecimalAttribute) GetValue added in v2.8.0

func (x *DecimalAttribute) GetValue() float64

func (*DecimalAttribute) ProtoMessage added in v2.8.0

func (*DecimalAttribute) ProtoMessage()

func (*DecimalAttribute) ProtoReflect added in v2.8.0

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

func (*DecimalAttribute) Reset added in v2.8.0

func (x *DecimalAttribute) Reset()

func (*DecimalAttribute) String added in v2.8.0

func (x *DecimalAttribute) String() string

type DecimalAttributeDefinition added in v2.8.0

type DecimalAttributeDefinition struct {
	DisplayName string `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool   `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	// contains filtered or unexported fields
}

func (*DecimalAttributeDefinition) Descriptor deprecated added in v2.8.0

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

Deprecated: Use DecimalAttributeDefinition.ProtoReflect.Descriptor instead.

func (*DecimalAttributeDefinition) GetDescription added in v2.8.0

func (x *DecimalAttributeDefinition) GetDescription() string

func (*DecimalAttributeDefinition) GetDisplayName added in v2.8.0

func (x *DecimalAttributeDefinition) GetDisplayName() string

func (*DecimalAttributeDefinition) GetId added in v2.8.0

func (*DecimalAttributeDefinition) GetRequired added in v2.8.0

func (x *DecimalAttributeDefinition) GetRequired() bool

func (*DecimalAttributeDefinition) ProtoMessage added in v2.8.0

func (*DecimalAttributeDefinition) ProtoMessage()

func (*DecimalAttributeDefinition) ProtoReflect added in v2.8.0

func (*DecimalAttributeDefinition) Reset added in v2.8.0

func (x *DecimalAttributeDefinition) Reset()

func (*DecimalAttributeDefinition) String added in v2.8.0

func (x *DecimalAttributeDefinition) String() string

type DecimalEnumAttributeDefinition added in v2.8.0

type DecimalEnumAttributeDefinition struct {
	DisplayName string    `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string    `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string    `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool      `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	Enum        []float64 `protobuf:"fixed64,5,rep,packed,name=enum,proto3" json:"enum,omitempty"`
	// contains filtered or unexported fields
}

func (*DecimalEnumAttributeDefinition) Descriptor deprecated added in v2.8.0

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

Deprecated: Use DecimalEnumAttributeDefinition.ProtoReflect.Descriptor instead.

func (*DecimalEnumAttributeDefinition) GetDescription added in v2.8.0

func (x *DecimalEnumAttributeDefinition) GetDescription() string

func (*DecimalEnumAttributeDefinition) GetDisplayName added in v2.8.0

func (x *DecimalEnumAttributeDefinition) GetDisplayName() string

func (*DecimalEnumAttributeDefinition) GetEnum added in v2.8.0

func (x *DecimalEnumAttributeDefinition) GetEnum() []float64

func (*DecimalEnumAttributeDefinition) GetId added in v2.8.0

func (*DecimalEnumAttributeDefinition) GetRequired added in v2.8.0

func (x *DecimalEnumAttributeDefinition) GetRequired() bool

func (*DecimalEnumAttributeDefinition) ProtoMessage added in v2.8.0

func (*DecimalEnumAttributeDefinition) ProtoMessage()

func (*DecimalEnumAttributeDefinition) ProtoReflect added in v2.8.0

func (*DecimalEnumAttributeDefinition) Reset added in v2.8.0

func (x *DecimalEnumAttributeDefinition) Reset()

func (*DecimalEnumAttributeDefinition) String added in v2.8.0

type DecryptRequest added in v2.4.0

type DecryptRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,3,opt,name=decrypter,proto3" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*DecryptRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use DecryptRequest.ProtoReflect.Descriptor instead.

func (*DecryptRequest) GetConfigData added in v2.4.0

func (x *DecryptRequest) GetConfigData() *ConfigData

func (*DecryptRequest) GetDecrypter added in v2.4.0

func (x *DecryptRequest) GetDecrypter() *Encrypter

func (*DecryptRequest) GetRecord added in v2.4.0

func (x *DecryptRequest) GetRecord() *Record

func (*DecryptRequest) ProtoMessage added in v2.4.0

func (*DecryptRequest) ProtoMessage()

func (*DecryptRequest) ProtoReflect added in v2.4.0

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

func (*DecryptRequest) Reset added in v2.4.0

func (x *DecryptRequest) Reset()

func (*DecryptRequest) String added in v2.4.0

func (x *DecryptRequest) String() string

type DecryptResponse added in v2.4.0

type DecryptResponse struct {
	Record *Record `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*DecryptResponse) Descriptor deprecated added in v2.4.0

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

Deprecated: Use DecryptResponse.ProtoReflect.Descriptor instead.

func (*DecryptResponse) GetError added in v2.4.0

func (x *DecryptResponse) GetError() *Error

func (*DecryptResponse) GetRecord added in v2.4.0

func (x *DecryptResponse) GetRecord() *Record

func (*DecryptResponse) ProtoMessage added in v2.4.0

func (*DecryptResponse) ProtoMessage()

func (*DecryptResponse) ProtoReflect added in v2.4.0

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

func (*DecryptResponse) Reset added in v2.4.0

func (x *DecryptResponse) Reset()

func (*DecryptResponse) String added in v2.4.0

func (x *DecryptResponse) String() string

type DidMethod added in v2.8.0

type DidMethod int32
const (
	DidMethod_POLYGON_ID      DidMethod = 0
	DidMethod_POLYGON_ID_TEST DidMethod = 1
)

func (DidMethod) Descriptor added in v2.8.0

func (DidMethod) Descriptor() protoreflect.EnumDescriptor

func (DidMethod) Enum added in v2.8.0

func (x DidMethod) Enum() *DidMethod

func (DidMethod) EnumDescriptor deprecated added in v2.8.0

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

Deprecated: Use DidMethod.Descriptor instead.

func (DidMethod) Number added in v2.8.0

func (x DidMethod) Number() protoreflect.EnumNumber

func (DidMethod) String added in v2.8.0

func (x DidMethod) String() string

func (DidMethod) Type added in v2.8.0

type EncryptRequest added in v2.4.0

type EncryptRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,3,opt,name=encrypter,proto3" json:"encrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use EncryptRequest.ProtoReflect.Descriptor instead.

func (*EncryptRequest) GetConfigData added in v2.4.0

func (x *EncryptRequest) GetConfigData() *ConfigData

func (*EncryptRequest) GetEncrypter added in v2.4.0

func (x *EncryptRequest) GetEncrypter() *Encrypter

func (*EncryptRequest) GetRecord added in v2.4.0

func (x *EncryptRequest) GetRecord() *Record

func (*EncryptRequest) ProtoMessage added in v2.4.0

func (*EncryptRequest) ProtoMessage()

func (*EncryptRequest) ProtoReflect added in v2.4.0

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

func (*EncryptRequest) Reset added in v2.4.0

func (x *EncryptRequest) Reset()

func (*EncryptRequest) String added in v2.4.0

func (x *EncryptRequest) String() string

type EncryptResponse added in v2.4.0

type EncryptResponse struct {
	Record *Record `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptResponse) Descriptor deprecated added in v2.4.0

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

Deprecated: Use EncryptResponse.ProtoReflect.Descriptor instead.

func (*EncryptResponse) GetError added in v2.4.0

func (x *EncryptResponse) GetError() *Error

func (*EncryptResponse) GetRecord added in v2.4.0

func (x *EncryptResponse) GetRecord() *Record

func (*EncryptResponse) ProtoMessage added in v2.4.0

func (*EncryptResponse) ProtoMessage()

func (*EncryptResponse) ProtoReflect added in v2.4.0

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

func (*EncryptResponse) Reset added in v2.4.0

func (x *EncryptResponse) Reset()

func (*EncryptResponse) String added in v2.4.0

func (x *EncryptResponse) String() string

type Encrypter

type Encrypter struct {
	LocalKey           *LocalKey           `protobuf:"bytes,1,opt,name=local_key,json=localKey,proto3,oneof" json:"local_key,omitempty"`
	ManagedKey         *ManagedKey         `protobuf:"bytes,2,opt,name=managed_key,json=managedKey,proto3,oneof" json:"managed_key,omitempty"`
	LocalCertificate   *LocalCertificate   `protobuf:"bytes,3,opt,name=local_certificate,json=localCertificate,proto3,oneof" json:"local_certificate,omitempty"`
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,4,opt,name=managed_certificate,json=managedCertificate,proto3,oneof" json:"managed_certificate,omitempty"`
	AccessControl      *AccessControl      `protobuf:"bytes,6,opt,name=access_control,json=accessControl,proto3,oneof" json:"access_control,omitempty"`
	// contains filtered or unexported fields
}

func (*Encrypter) Descriptor deprecated

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

Deprecated: Use Encrypter.ProtoReflect.Descriptor instead.

func (*Encrypter) GetAccessControl added in v2.8.0

func (x *Encrypter) GetAccessControl() *AccessControl

func (*Encrypter) GetLocalCertificate added in v2.7.0

func (x *Encrypter) GetLocalCertificate() *LocalCertificate

func (*Encrypter) GetLocalKey added in v2.5.0

func (x *Encrypter) GetLocalKey() *LocalKey

func (*Encrypter) GetManagedCertificate added in v2.7.0

func (x *Encrypter) GetManagedCertificate() *ManagedCertificate

func (*Encrypter) GetManagedKey added in v2.5.0

func (x *Encrypter) GetManagedKey() *ManagedKey

func (*Encrypter) ProtoMessage

func (*Encrypter) ProtoMessage()

func (*Encrypter) ProtoReflect

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

func (*Encrypter) Reset

func (x *Encrypter) Reset()

func (*Encrypter) String

func (x *Encrypter) String() string

type EncryptionAlg

type EncryptionAlg int32
const (
	EncryptionAlg_A256GCM   EncryptionAlg = 0
	EncryptionAlg_A256GCM_M EncryptionAlg = 1
	EncryptionAlg_RSA       EncryptionAlg = 2
	EncryptionAlg_RSA_M     EncryptionAlg = 3
)

func (EncryptionAlg) Descriptor

func (EncryptionAlg) Enum

func (x EncryptionAlg) Enum() *EncryptionAlg

func (EncryptionAlg) EnumDescriptor deprecated

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

Deprecated: Use EncryptionAlg.Descriptor instead.

func (EncryptionAlg) Number

func (EncryptionAlg) String

func (x EncryptionAlg) String() string

func (EncryptionAlg) Type

type EncryptionAlgRequest added in v2.4.0

type EncryptionAlgRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptionAlgRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use EncryptionAlgRequest.ProtoReflect.Descriptor instead.

func (*EncryptionAlgRequest) GetConfigData added in v2.4.0

func (x *EncryptionAlgRequest) GetConfigData() *ConfigData

func (*EncryptionAlgRequest) GetRecord added in v2.4.0

func (x *EncryptionAlgRequest) GetRecord() *Record

func (*EncryptionAlgRequest) ProtoMessage added in v2.4.0

func (*EncryptionAlgRequest) ProtoMessage()

func (*EncryptionAlgRequest) ProtoReflect added in v2.4.0

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

func (*EncryptionAlgRequest) Reset added in v2.4.0

func (x *EncryptionAlgRequest) Reset()

func (*EncryptionAlgRequest) String added in v2.4.0

func (x *EncryptionAlgRequest) String() string

type EncryptionAlgResponse added in v2.3.0

type EncryptionAlgResponse struct {
	Alg   EncryptionAlg `protobuf:"varint,1,opt,name=alg,proto3,enum=bloock.EncryptionAlg" json:"alg,omitempty"`
	Error *Error        `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptionAlgResponse) Descriptor deprecated added in v2.3.0

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

Deprecated: Use EncryptionAlgResponse.ProtoReflect.Descriptor instead.

func (*EncryptionAlgResponse) GetAlg added in v2.3.0

func (*EncryptionAlgResponse) GetError added in v2.3.0

func (x *EncryptionAlgResponse) GetError() *Error

func (*EncryptionAlgResponse) ProtoMessage added in v2.3.0

func (*EncryptionAlgResponse) ProtoMessage()

func (*EncryptionAlgResponse) ProtoReflect added in v2.3.0

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

func (*EncryptionAlgResponse) Reset added in v2.3.0

func (x *EncryptionAlgResponse) Reset()

func (*EncryptionAlgResponse) String added in v2.3.0

func (x *EncryptionAlgResponse) String() string

type EncryptionDetails added in v2.7.0

type EncryptionDetails struct {
	Alg     *string `protobuf:"bytes,1,opt,name=alg,proto3,oneof" json:"alg,omitempty"`
	Key     *string `protobuf:"bytes,2,opt,name=key,proto3,oneof" json:"key,omitempty"`
	Subject *string `protobuf:"bytes,3,opt,name=subject,proto3,oneof" json:"subject,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptionDetails) Descriptor deprecated added in v2.7.0

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

Deprecated: Use EncryptionDetails.ProtoReflect.Descriptor instead.

func (*EncryptionDetails) GetAlg added in v2.7.0

func (x *EncryptionDetails) GetAlg() string

func (*EncryptionDetails) GetKey added in v2.7.0

func (x *EncryptionDetails) GetKey() string

func (*EncryptionDetails) GetSubject added in v2.7.0

func (x *EncryptionDetails) GetSubject() string

func (*EncryptionDetails) ProtoMessage added in v2.7.0

func (*EncryptionDetails) ProtoMessage()

func (*EncryptionDetails) ProtoReflect added in v2.7.0

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

func (*EncryptionDetails) Reset added in v2.7.0

func (x *EncryptionDetails) Reset()

func (*EncryptionDetails) String added in v2.7.0

func (x *EncryptionDetails) String() string

type EncryptionServiceClient added in v2.4.0

type EncryptionServiceClient interface {
	Encrypt(ctx context.Context, in *EncryptRequest, opts ...grpc.CallOption) (*EncryptResponse, error)
	Decrypt(ctx context.Context, in *DecryptRequest, opts ...grpc.CallOption) (*DecryptResponse, error)
	GetEncryptionAlg(ctx context.Context, in *EncryptionAlgRequest, opts ...grpc.CallOption) (*EncryptionAlgResponse, error)
}

EncryptionServiceClient is the client API for EncryptionService 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 NewEncryptionServiceClient added in v2.4.0

func NewEncryptionServiceClient(cc grpc.ClientConnInterface) EncryptionServiceClient

type EncryptionServiceServer added in v2.4.0

type EncryptionServiceServer interface {
	Encrypt(context.Context, *EncryptRequest) (*EncryptResponse, error)
	Decrypt(context.Context, *DecryptRequest) (*DecryptResponse, error)
	GetEncryptionAlg(context.Context, *EncryptionAlgRequest) (*EncryptionAlgResponse, error)
	// contains filtered or unexported methods
}

EncryptionServiceServer is the server API for EncryptionService service. All implementations must embed UnimplementedEncryptionServiceServer for forward compatibility

type Error

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

func (*Error) Descriptor deprecated

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

Deprecated: Use Error.ProtoReflect.Descriptor instead.

func (*Error) GetKind

func (x *Error) GetKind() string

func (*Error) GetMessage

func (x *Error) GetMessage() string

func (*Error) ProtoMessage

func (*Error) ProtoMessage()

func (*Error) ProtoReflect

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

func (*Error) Reset

func (x *Error) Reset()

func (*Error) String

func (x *Error) String() string

type ForcePublishIssuerStateRequest added in v2.8.0

type ForcePublishIssuerStateRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	IssuerDid  string      `protobuf:"bytes,2,opt,name=issuer_did,json=issuerDid,proto3" json:"issuer_did,omitempty"`
	Key        *Key        `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*ForcePublishIssuerStateRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use ForcePublishIssuerStateRequest.ProtoReflect.Descriptor instead.

func (*ForcePublishIssuerStateRequest) GetConfigData added in v2.8.0

func (x *ForcePublishIssuerStateRequest) GetConfigData() *ConfigData

func (*ForcePublishIssuerStateRequest) GetIssuerDid added in v2.8.0

func (x *ForcePublishIssuerStateRequest) GetIssuerDid() string

func (*ForcePublishIssuerStateRequest) GetKey added in v2.8.0

func (x *ForcePublishIssuerStateRequest) GetKey() *Key

func (*ForcePublishIssuerStateRequest) ProtoMessage added in v2.8.0

func (*ForcePublishIssuerStateRequest) ProtoMessage()

func (*ForcePublishIssuerStateRequest) ProtoReflect added in v2.8.0

func (*ForcePublishIssuerStateRequest) Reset added in v2.8.0

func (x *ForcePublishIssuerStateRequest) Reset()

func (*ForcePublishIssuerStateRequest) String added in v2.8.0

type ForcePublishIssuerStateResponse added in v2.8.0

type ForcePublishIssuerStateResponse struct {
	StateReceipt *IssuerStateReceipt `protobuf:"bytes,1,opt,name=state_receipt,json=stateReceipt,proto3" json:"state_receipt,omitempty"`
	Error        *Error              `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ForcePublishIssuerStateResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use ForcePublishIssuerStateResponse.ProtoReflect.Descriptor instead.

func (*ForcePublishIssuerStateResponse) GetError added in v2.8.0

func (x *ForcePublishIssuerStateResponse) GetError() *Error

func (*ForcePublishIssuerStateResponse) GetStateReceipt added in v2.8.0

func (*ForcePublishIssuerStateResponse) ProtoMessage added in v2.8.0

func (*ForcePublishIssuerStateResponse) ProtoMessage()

func (*ForcePublishIssuerStateResponse) ProtoReflect added in v2.8.0

func (*ForcePublishIssuerStateResponse) Reset added in v2.8.0

func (*ForcePublishIssuerStateResponse) String added in v2.8.0

type GenerateLocalCertificateRequest added in v2.7.0

type GenerateLocalCertificateRequest struct {
	ConfigData *ConfigData             `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Params     *LocalCertificateParams `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateLocalCertificateRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GenerateLocalCertificateRequest.ProtoReflect.Descriptor instead.

func (*GenerateLocalCertificateRequest) GetConfigData added in v2.7.0

func (x *GenerateLocalCertificateRequest) GetConfigData() *ConfigData

func (*GenerateLocalCertificateRequest) GetParams added in v2.7.0

func (*GenerateLocalCertificateRequest) ProtoMessage added in v2.7.0

func (*GenerateLocalCertificateRequest) ProtoMessage()

func (*GenerateLocalCertificateRequest) ProtoReflect added in v2.7.0

func (*GenerateLocalCertificateRequest) Reset added in v2.7.0

func (*GenerateLocalCertificateRequest) String added in v2.7.0

type GenerateLocalCertificateResponse added in v2.7.0

type GenerateLocalCertificateResponse struct {
	LocalCertificate *LocalCertificate `protobuf:"bytes,1,opt,name=local_certificate,json=localCertificate,proto3" json:"local_certificate,omitempty"`
	Error            *Error            `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateLocalCertificateResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GenerateLocalCertificateResponse.ProtoReflect.Descriptor instead.

func (*GenerateLocalCertificateResponse) GetError added in v2.7.0

func (x *GenerateLocalCertificateResponse) GetError() *Error

func (*GenerateLocalCertificateResponse) GetLocalCertificate added in v2.7.0

func (x *GenerateLocalCertificateResponse) GetLocalCertificate() *LocalCertificate

func (*GenerateLocalCertificateResponse) ProtoMessage added in v2.7.0

func (*GenerateLocalCertificateResponse) ProtoMessage()

func (*GenerateLocalCertificateResponse) ProtoReflect added in v2.7.0

func (*GenerateLocalCertificateResponse) Reset added in v2.7.0

func (*GenerateLocalCertificateResponse) String added in v2.7.0

type GenerateLocalKeyRequest added in v2.5.0

type GenerateLocalKeyRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	KeyType    KeyType     `protobuf:"varint,2,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateLocalKeyRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use GenerateLocalKeyRequest.ProtoReflect.Descriptor instead.

func (*GenerateLocalKeyRequest) GetConfigData added in v2.5.0

func (x *GenerateLocalKeyRequest) GetConfigData() *ConfigData

func (*GenerateLocalKeyRequest) GetKeyType added in v2.5.0

func (x *GenerateLocalKeyRequest) GetKeyType() KeyType

func (*GenerateLocalKeyRequest) ProtoMessage added in v2.5.0

func (*GenerateLocalKeyRequest) ProtoMessage()

func (*GenerateLocalKeyRequest) ProtoReflect added in v2.5.0

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

func (*GenerateLocalKeyRequest) Reset added in v2.5.0

func (x *GenerateLocalKeyRequest) Reset()

func (*GenerateLocalKeyRequest) String added in v2.5.0

func (x *GenerateLocalKeyRequest) String() string

type GenerateLocalKeyResponse added in v2.5.0

type GenerateLocalKeyResponse struct {
	LocalKey *LocalKey `protobuf:"bytes,1,opt,name=local_key,json=localKey,proto3" json:"local_key,omitempty"`
	Error    *Error    `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateLocalKeyResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use GenerateLocalKeyResponse.ProtoReflect.Descriptor instead.

func (*GenerateLocalKeyResponse) GetError added in v2.5.0

func (x *GenerateLocalKeyResponse) GetError() *Error

func (*GenerateLocalKeyResponse) GetLocalKey added in v2.5.0

func (x *GenerateLocalKeyResponse) GetLocalKey() *LocalKey

func (*GenerateLocalKeyResponse) ProtoMessage added in v2.5.0

func (*GenerateLocalKeyResponse) ProtoMessage()

func (*GenerateLocalKeyResponse) ProtoReflect added in v2.5.0

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

func (*GenerateLocalKeyResponse) Reset added in v2.5.0

func (x *GenerateLocalKeyResponse) Reset()

func (*GenerateLocalKeyResponse) String added in v2.5.0

func (x *GenerateLocalKeyResponse) String() string

type GenerateManagedCertificateRequest added in v2.7.0

type GenerateManagedCertificateRequest struct {
	ConfigData *ConfigData               `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Params     *ManagedCertificateParams `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateManagedCertificateRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GenerateManagedCertificateRequest.ProtoReflect.Descriptor instead.

func (*GenerateManagedCertificateRequest) GetConfigData added in v2.7.0

func (x *GenerateManagedCertificateRequest) GetConfigData() *ConfigData

func (*GenerateManagedCertificateRequest) GetParams added in v2.7.0

func (*GenerateManagedCertificateRequest) ProtoMessage added in v2.7.0

func (*GenerateManagedCertificateRequest) ProtoMessage()

func (*GenerateManagedCertificateRequest) ProtoReflect added in v2.7.0

func (*GenerateManagedCertificateRequest) Reset added in v2.7.0

func (*GenerateManagedCertificateRequest) String added in v2.7.0

type GenerateManagedCertificateResponse added in v2.7.0

type GenerateManagedCertificateResponse struct {
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,1,opt,name=managed_certificate,json=managedCertificate,proto3" json:"managed_certificate,omitempty"`
	Error              *Error              `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateManagedCertificateResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GenerateManagedCertificateResponse.ProtoReflect.Descriptor instead.

func (*GenerateManagedCertificateResponse) GetError added in v2.7.0

func (*GenerateManagedCertificateResponse) GetManagedCertificate added in v2.7.0

func (x *GenerateManagedCertificateResponse) GetManagedCertificate() *ManagedCertificate

func (*GenerateManagedCertificateResponse) ProtoMessage added in v2.7.0

func (*GenerateManagedCertificateResponse) ProtoMessage()

func (*GenerateManagedCertificateResponse) ProtoReflect added in v2.7.0

func (*GenerateManagedCertificateResponse) Reset added in v2.7.0

func (*GenerateManagedCertificateResponse) String added in v2.7.0

type GenerateManagedKeyRequest added in v2.5.0

type GenerateManagedKeyRequest struct {
	ConfigData *ConfigData       `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Params     *ManagedKeyParams `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateManagedKeyRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use GenerateManagedKeyRequest.ProtoReflect.Descriptor instead.

func (*GenerateManagedKeyRequest) GetConfigData added in v2.5.0

func (x *GenerateManagedKeyRequest) GetConfigData() *ConfigData

func (*GenerateManagedKeyRequest) GetParams added in v2.5.0

func (*GenerateManagedKeyRequest) ProtoMessage added in v2.5.0

func (*GenerateManagedKeyRequest) ProtoMessage()

func (*GenerateManagedKeyRequest) ProtoReflect added in v2.5.0

func (*GenerateManagedKeyRequest) Reset added in v2.5.0

func (x *GenerateManagedKeyRequest) Reset()

func (*GenerateManagedKeyRequest) String added in v2.5.0

func (x *GenerateManagedKeyRequest) String() string

type GenerateManagedKeyResponse added in v2.5.0

type GenerateManagedKeyResponse struct {
	ManagedKey *ManagedKey `protobuf:"bytes,1,opt,name=managed_key,json=managedKey,proto3" json:"managed_key,omitempty"`
	Error      *Error      `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateManagedKeyResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use GenerateManagedKeyResponse.ProtoReflect.Descriptor instead.

func (*GenerateManagedKeyResponse) GetError added in v2.5.0

func (x *GenerateManagedKeyResponse) GetError() *Error

func (*GenerateManagedKeyResponse) GetManagedKey added in v2.5.0

func (x *GenerateManagedKeyResponse) GetManagedKey() *ManagedKey

func (*GenerateManagedKeyResponse) ProtoMessage added in v2.5.0

func (*GenerateManagedKeyResponse) ProtoMessage()

func (*GenerateManagedKeyResponse) ProtoReflect added in v2.5.0

func (*GenerateManagedKeyResponse) Reset added in v2.5.0

func (x *GenerateManagedKeyResponse) Reset()

func (*GenerateManagedKeyResponse) String added in v2.5.0

func (x *GenerateManagedKeyResponse) String() string

type GetAnchorRequest

type GetAnchorRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	AnchorId   int64       `protobuf:"varint,2,opt,name=anchor_id,json=anchorId,proto3" json:"anchor_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAnchorRequest) Descriptor deprecated

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

Deprecated: Use GetAnchorRequest.ProtoReflect.Descriptor instead.

func (*GetAnchorRequest) GetAnchorId

func (x *GetAnchorRequest) GetAnchorId() int64

func (*GetAnchorRequest) GetConfigData

func (x *GetAnchorRequest) GetConfigData() *ConfigData

func (*GetAnchorRequest) ProtoMessage

func (*GetAnchorRequest) ProtoMessage()

func (*GetAnchorRequest) ProtoReflect

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

func (*GetAnchorRequest) Reset

func (x *GetAnchorRequest) Reset()

func (*GetAnchorRequest) String

func (x *GetAnchorRequest) String() string

type GetAnchorResponse

type GetAnchorResponse struct {
	Anchor *Anchor `protobuf:"bytes,1,opt,name=anchor,proto3,oneof" json:"anchor,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAnchorResponse) Descriptor deprecated

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

Deprecated: Use GetAnchorResponse.ProtoReflect.Descriptor instead.

func (*GetAnchorResponse) GetAnchor

func (x *GetAnchorResponse) GetAnchor() *Anchor

func (*GetAnchorResponse) GetError

func (x *GetAnchorResponse) GetError() *Error

func (*GetAnchorResponse) ProtoMessage

func (*GetAnchorResponse) ProtoMessage()

func (*GetAnchorResponse) ProtoReflect

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

func (*GetAnchorResponse) Reset

func (x *GetAnchorResponse) Reset()

func (*GetAnchorResponse) String

func (x *GetAnchorResponse) String() string

type GetCredentialOfferRequest added in v2.8.0

type GetCredentialOfferRequest struct {
	ConfigData   *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	CredentialId string      `protobuf:"bytes,2,opt,name=credential_id,json=credentialId,proto3" json:"credential_id,omitempty"`
	Key          *Key        `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCredentialOfferRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use GetCredentialOfferRequest.ProtoReflect.Descriptor instead.

func (*GetCredentialOfferRequest) GetConfigData added in v2.8.0

func (x *GetCredentialOfferRequest) GetConfigData() *ConfigData

func (*GetCredentialOfferRequest) GetCredentialId added in v2.8.0

func (x *GetCredentialOfferRequest) GetCredentialId() string

func (*GetCredentialOfferRequest) GetKey added in v2.8.0

func (x *GetCredentialOfferRequest) GetKey() *Key

func (*GetCredentialOfferRequest) ProtoMessage added in v2.8.0

func (*GetCredentialOfferRequest) ProtoMessage()

func (*GetCredentialOfferRequest) ProtoReflect added in v2.8.0

func (*GetCredentialOfferRequest) Reset added in v2.8.0

func (x *GetCredentialOfferRequest) Reset()

func (*GetCredentialOfferRequest) String added in v2.8.0

func (x *GetCredentialOfferRequest) String() string

type GetCredentialOfferResponse added in v2.8.0

type GetCredentialOfferResponse struct {
	CredentialOffer string `protobuf:"bytes,1,opt,name=credential_offer,json=credentialOffer,proto3" json:"credential_offer,omitempty"`
	Error           *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCredentialOfferResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use GetCredentialOfferResponse.ProtoReflect.Descriptor instead.

func (*GetCredentialOfferResponse) GetCredentialOffer added in v2.8.0

func (x *GetCredentialOfferResponse) GetCredentialOffer() string

func (*GetCredentialOfferResponse) GetError added in v2.8.0

func (x *GetCredentialOfferResponse) GetError() *Error

func (*GetCredentialOfferResponse) ProtoMessage added in v2.8.0

func (*GetCredentialOfferResponse) ProtoMessage()

func (*GetCredentialOfferResponse) ProtoReflect added in v2.8.0

func (*GetCredentialOfferResponse) Reset added in v2.8.0

func (x *GetCredentialOfferResponse) Reset()

func (*GetCredentialOfferResponse) String added in v2.8.0

func (x *GetCredentialOfferResponse) String() string

type GetCredentialProofRequest added in v2.6.0

type GetCredentialProofRequest struct {
	ConfigData   *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	IssuerDid    string      `protobuf:"bytes,2,opt,name=issuer_did,json=issuerDid,proto3" json:"issuer_did,omitempty"`
	CredentialId string      `protobuf:"bytes,3,opt,name=credential_id,json=credentialId,proto3" json:"credential_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCredentialProofRequest) Descriptor deprecated added in v2.6.0

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

Deprecated: Use GetCredentialProofRequest.ProtoReflect.Descriptor instead.

func (*GetCredentialProofRequest) GetConfigData added in v2.6.0

func (x *GetCredentialProofRequest) GetConfigData() *ConfigData

func (*GetCredentialProofRequest) GetCredentialId added in v2.6.0

func (x *GetCredentialProofRequest) GetCredentialId() string

func (*GetCredentialProofRequest) GetIssuerDid added in v2.6.0

func (x *GetCredentialProofRequest) GetIssuerDid() string

func (*GetCredentialProofRequest) ProtoMessage added in v2.6.0

func (*GetCredentialProofRequest) ProtoMessage()

func (*GetCredentialProofRequest) ProtoReflect added in v2.6.0

func (*GetCredentialProofRequest) Reset added in v2.6.0

func (x *GetCredentialProofRequest) Reset()

func (*GetCredentialProofRequest) String added in v2.6.0

func (x *GetCredentialProofRequest) String() string

type GetCredentialProofResponse added in v2.6.0

type GetCredentialProofResponse struct {
	Proof *CredentialProof `protobuf:"bytes,1,opt,name=proof,proto3" json:"proof,omitempty"`
	Error *Error           `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCredentialProofResponse) Descriptor deprecated added in v2.6.0

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

Deprecated: Use GetCredentialProofResponse.ProtoReflect.Descriptor instead.

func (*GetCredentialProofResponse) GetError added in v2.6.0

func (x *GetCredentialProofResponse) GetError() *Error

func (*GetCredentialProofResponse) GetProof added in v2.6.0

func (*GetCredentialProofResponse) ProtoMessage added in v2.6.0

func (*GetCredentialProofResponse) ProtoMessage()

func (*GetCredentialProofResponse) ProtoReflect added in v2.6.0

func (*GetCredentialProofResponse) Reset added in v2.6.0

func (x *GetCredentialProofResponse) Reset()

func (*GetCredentialProofResponse) String added in v2.6.0

func (x *GetCredentialProofResponse) String() string

type GetCredentialRequest added in v2.8.0

type GetCredentialRequest struct {
	ConfigData   *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	CredentialId string      `protobuf:"bytes,2,opt,name=credential_id,json=credentialId,proto3" json:"credential_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCredentialRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use GetCredentialRequest.ProtoReflect.Descriptor instead.

func (*GetCredentialRequest) GetConfigData added in v2.8.0

func (x *GetCredentialRequest) GetConfigData() *ConfigData

func (*GetCredentialRequest) GetCredentialId added in v2.8.0

func (x *GetCredentialRequest) GetCredentialId() string

func (*GetCredentialRequest) ProtoMessage added in v2.8.0

func (*GetCredentialRequest) ProtoMessage()

func (*GetCredentialRequest) ProtoReflect added in v2.8.0

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

func (*GetCredentialRequest) Reset added in v2.8.0

func (x *GetCredentialRequest) Reset()

func (*GetCredentialRequest) String added in v2.8.0

func (x *GetCredentialRequest) String() string

type GetCredentialResponse added in v2.8.0

type GetCredentialResponse struct {
	Credential *Credential `protobuf:"bytes,1,opt,name=credential,proto3" json:"credential,omitempty"`
	Error      *Error      `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCredentialResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use GetCredentialResponse.ProtoReflect.Descriptor instead.

func (*GetCredentialResponse) GetCredential added in v2.8.0

func (x *GetCredentialResponse) GetCredential() *Credential

func (*GetCredentialResponse) GetError added in v2.8.0

func (x *GetCredentialResponse) GetError() *Error

func (*GetCredentialResponse) ProtoMessage added in v2.8.0

func (*GetCredentialResponse) ProtoMessage()

func (*GetCredentialResponse) ProtoReflect added in v2.8.0

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

func (*GetCredentialResponse) Reset added in v2.8.0

func (x *GetCredentialResponse) Reset()

func (*GetCredentialResponse) String added in v2.8.0

func (x *GetCredentialResponse) String() string

type GetDetailsRequest added in v2.7.0

type GetDetailsRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload    []byte      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDetailsRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetDetailsRequest.ProtoReflect.Descriptor instead.

func (*GetDetailsRequest) GetConfigData added in v2.7.0

func (x *GetDetailsRequest) GetConfigData() *ConfigData

func (*GetDetailsRequest) GetPayload added in v2.7.0

func (x *GetDetailsRequest) GetPayload() []byte

func (*GetDetailsRequest) ProtoMessage added in v2.7.0

func (*GetDetailsRequest) ProtoMessage()

func (*GetDetailsRequest) ProtoReflect added in v2.7.0

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

func (*GetDetailsRequest) Reset added in v2.7.0

func (x *GetDetailsRequest) Reset()

func (*GetDetailsRequest) String added in v2.7.0

func (x *GetDetailsRequest) String() string

type GetDetailsResponse added in v2.7.0

type GetDetailsResponse struct {
	Details *RecordDetails `protobuf:"bytes,1,opt,name=details,proto3" json:"details,omitempty"`
	Error   *Error         `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDetailsResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetDetailsResponse.ProtoReflect.Descriptor instead.

func (*GetDetailsResponse) GetDetails added in v2.7.0

func (x *GetDetailsResponse) GetDetails() *RecordDetails

func (*GetDetailsResponse) GetError added in v2.7.0

func (x *GetDetailsResponse) GetError() *Error

func (*GetDetailsResponse) ProtoMessage added in v2.7.0

func (*GetDetailsResponse) ProtoMessage()

func (*GetDetailsResponse) ProtoReflect added in v2.7.0

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

func (*GetDetailsResponse) Reset added in v2.7.0

func (x *GetDetailsResponse) Reset()

func (*GetDetailsResponse) String added in v2.7.0

func (x *GetDetailsResponse) String() string

type GetHashRequest added in v2.4.0

type GetHashRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	// contains filtered or unexported fields
}

func (*GetHashRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use GetHashRequest.ProtoReflect.Descriptor instead.

func (*GetHashRequest) GetConfigData added in v2.4.0

func (x *GetHashRequest) GetConfigData() *ConfigData

func (*GetHashRequest) GetRecord added in v2.4.0

func (x *GetHashRequest) GetRecord() *Record

func (*GetHashRequest) ProtoMessage added in v2.4.0

func (*GetHashRequest) ProtoMessage()

func (*GetHashRequest) ProtoReflect added in v2.4.0

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

func (*GetHashRequest) Reset added in v2.4.0

func (x *GetHashRequest) Reset()

func (*GetHashRequest) String added in v2.4.0

func (x *GetHashRequest) String() string

type GetHashResponse added in v2.4.0

type GetHashResponse struct {
	Hash  string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Error *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetHashResponse) Descriptor deprecated added in v2.4.0

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

Deprecated: Use GetHashResponse.ProtoReflect.Descriptor instead.

func (*GetHashResponse) GetError added in v2.4.0

func (x *GetHashResponse) GetError() *Error

func (*GetHashResponse) GetHash added in v2.4.0

func (x *GetHashResponse) GetHash() string

func (*GetHashResponse) ProtoMessage added in v2.4.0

func (*GetHashResponse) ProtoMessage()

func (*GetHashResponse) ProtoReflect added in v2.4.0

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

func (*GetHashResponse) Reset added in v2.4.0

func (x *GetHashResponse) Reset()

func (*GetHashResponse) String added in v2.4.0

func (x *GetHashResponse) String() string

type GetPayloadRequest added in v2.7.0

type GetPayloadRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPayloadRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetPayloadRequest.ProtoReflect.Descriptor instead.

func (*GetPayloadRequest) GetConfigData added in v2.7.0

func (x *GetPayloadRequest) GetConfigData() *ConfigData

func (*GetPayloadRequest) GetRecord added in v2.7.0

func (x *GetPayloadRequest) GetRecord() *Record

func (*GetPayloadRequest) ProtoMessage added in v2.7.0

func (*GetPayloadRequest) ProtoMessage()

func (*GetPayloadRequest) ProtoReflect added in v2.7.0

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

func (*GetPayloadRequest) Reset added in v2.7.0

func (x *GetPayloadRequest) Reset()

func (*GetPayloadRequest) String added in v2.7.0

func (x *GetPayloadRequest) String() string

type GetPayloadResponse added in v2.7.0

type GetPayloadResponse struct {
	Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
	Error   *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPayloadResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetPayloadResponse.ProtoReflect.Descriptor instead.

func (*GetPayloadResponse) GetError added in v2.7.0

func (x *GetPayloadResponse) GetError() *Error

func (*GetPayloadResponse) GetPayload added in v2.7.0

func (x *GetPayloadResponse) GetPayload() []byte

func (*GetPayloadResponse) ProtoMessage added in v2.7.0

func (*GetPayloadResponse) ProtoMessage()

func (*GetPayloadResponse) ProtoReflect added in v2.7.0

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

func (*GetPayloadResponse) Reset added in v2.7.0

func (x *GetPayloadResponse) Reset()

func (*GetPayloadResponse) String added in v2.7.0

func (x *GetPayloadResponse) String() string

type GetProofRequest

type GetProofRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Records    []*Record   `protobuf:"bytes,2,rep,name=records,proto3" json:"records,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProofRequest) Descriptor deprecated

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

Deprecated: Use GetProofRequest.ProtoReflect.Descriptor instead.

func (*GetProofRequest) GetConfigData

func (x *GetProofRequest) GetConfigData() *ConfigData

func (*GetProofRequest) GetRecords

func (x *GetProofRequest) GetRecords() []*Record

func (*GetProofRequest) ProtoMessage

func (*GetProofRequest) ProtoMessage()

func (*GetProofRequest) ProtoReflect

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

func (*GetProofRequest) Reset

func (x *GetProofRequest) Reset()

func (*GetProofRequest) String

func (x *GetProofRequest) String() string

type GetProofResponse

type GetProofResponse struct {
	Proof *Proof `protobuf:"bytes,1,opt,name=proof,proto3" json:"proof,omitempty"`
	Error *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProofResponse) Descriptor deprecated

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

Deprecated: Use GetProofResponse.ProtoReflect.Descriptor instead.

func (*GetProofResponse) GetError

func (x *GetProofResponse) GetError() *Error

func (*GetProofResponse) GetProof

func (x *GetProofResponse) GetProof() *Proof

func (*GetProofResponse) ProtoMessage

func (*GetProofResponse) ProtoMessage()

func (*GetProofResponse) ProtoReflect

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

func (*GetProofResponse) Reset

func (x *GetProofResponse) Reset()

func (*GetProofResponse) String

func (x *GetProofResponse) String() string

type GetSchemaRequest added in v2.5.0

type GetSchemaRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Id         string      `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSchemaRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use GetSchemaRequest.ProtoReflect.Descriptor instead.

func (*GetSchemaRequest) GetConfigData added in v2.5.0

func (x *GetSchemaRequest) GetConfigData() *ConfigData

func (*GetSchemaRequest) GetId added in v2.5.0

func (x *GetSchemaRequest) GetId() string

func (*GetSchemaRequest) ProtoMessage added in v2.5.0

func (*GetSchemaRequest) ProtoMessage()

func (*GetSchemaRequest) ProtoReflect added in v2.5.0

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

func (*GetSchemaRequest) Reset added in v2.5.0

func (x *GetSchemaRequest) Reset()

func (*GetSchemaRequest) String added in v2.5.0

func (x *GetSchemaRequest) String() string

type GetSchemaResponse added in v2.5.0

type GetSchemaResponse struct {
	Schema *Schema `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSchemaResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use GetSchemaResponse.ProtoReflect.Descriptor instead.

func (*GetSchemaResponse) GetError added in v2.5.0

func (x *GetSchemaResponse) GetError() *Error

func (*GetSchemaResponse) GetSchema added in v2.5.0

func (x *GetSchemaResponse) GetSchema() *Schema

func (*GetSchemaResponse) ProtoMessage added in v2.5.0

func (*GetSchemaResponse) ProtoMessage()

func (*GetSchemaResponse) ProtoReflect added in v2.5.0

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

func (*GetSchemaResponse) Reset added in v2.5.0

func (x *GetSchemaResponse) Reset()

func (*GetSchemaResponse) String added in v2.5.0

func (x *GetSchemaResponse) String() string

type GetSignaturesRequest added in v2.4.0

type GetSignaturesRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSignaturesRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use GetSignaturesRequest.ProtoReflect.Descriptor instead.

func (*GetSignaturesRequest) GetConfigData added in v2.4.0

func (x *GetSignaturesRequest) GetConfigData() *ConfigData

func (*GetSignaturesRequest) GetRecord added in v2.4.0

func (x *GetSignaturesRequest) GetRecord() *Record

func (*GetSignaturesRequest) ProtoMessage added in v2.4.0

func (*GetSignaturesRequest) ProtoMessage()

func (*GetSignaturesRequest) ProtoReflect added in v2.4.0

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

func (*GetSignaturesRequest) Reset added in v2.4.0

func (x *GetSignaturesRequest) Reset()

func (*GetSignaturesRequest) String added in v2.4.0

func (x *GetSignaturesRequest) String() string

type GetSignaturesResponse added in v2.4.0

type GetSignaturesResponse struct {
	Signatures []*Signature `protobuf:"bytes,1,rep,name=signatures,proto3" json:"signatures,omitempty"`
	Error      *Error       `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSignaturesResponse) Descriptor deprecated added in v2.4.0

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

Deprecated: Use GetSignaturesResponse.ProtoReflect.Descriptor instead.

func (*GetSignaturesResponse) GetError added in v2.4.0

func (x *GetSignaturesResponse) GetError() *Error

func (*GetSignaturesResponse) GetSignatures added in v2.4.0

func (x *GetSignaturesResponse) GetSignatures() []*Signature

func (*GetSignaturesResponse) ProtoMessage added in v2.4.0

func (*GetSignaturesResponse) ProtoMessage()

func (*GetSignaturesResponse) ProtoReflect added in v2.4.0

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

func (*GetSignaturesResponse) Reset added in v2.4.0

func (x *GetSignaturesResponse) Reset()

func (*GetSignaturesResponse) String added in v2.4.0

func (x *GetSignaturesResponse) String() string

type GetVerificationStatusRequest added in v2.7.0

type GetVerificationStatusRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	SessionId  int64       `protobuf:"varint,2,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVerificationStatusRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetVerificationStatusRequest.ProtoReflect.Descriptor instead.

func (*GetVerificationStatusRequest) GetConfigData added in v2.7.0

func (x *GetVerificationStatusRequest) GetConfigData() *ConfigData

func (*GetVerificationStatusRequest) GetSessionId added in v2.7.0

func (x *GetVerificationStatusRequest) GetSessionId() int64

func (*GetVerificationStatusRequest) ProtoMessage added in v2.7.0

func (*GetVerificationStatusRequest) ProtoMessage()

func (*GetVerificationStatusRequest) ProtoReflect added in v2.7.0

func (*GetVerificationStatusRequest) Reset added in v2.7.0

func (x *GetVerificationStatusRequest) Reset()

func (*GetVerificationStatusRequest) String added in v2.7.0

type GetVerificationStatusResponse added in v2.7.0

type GetVerificationStatusResponse struct {
	Status bool   `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
	Error  *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVerificationStatusResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetVerificationStatusResponse.ProtoReflect.Descriptor instead.

func (*GetVerificationStatusResponse) GetError added in v2.7.0

func (x *GetVerificationStatusResponse) GetError() *Error

func (*GetVerificationStatusResponse) GetStatus added in v2.7.0

func (x *GetVerificationStatusResponse) GetStatus() bool

func (*GetVerificationStatusResponse) ProtoMessage added in v2.7.0

func (*GetVerificationStatusResponse) ProtoMessage()

func (*GetVerificationStatusResponse) ProtoReflect added in v2.7.0

func (*GetVerificationStatusResponse) Reset added in v2.7.0

func (x *GetVerificationStatusResponse) Reset()

func (*GetVerificationStatusResponse) String added in v2.7.0

type HashAlg added in v2.7.0

type HashAlg int32
const (
	HashAlg_SHA_256    HashAlg = 0
	HashAlg_KECCAK_256 HashAlg = 1
	HashAlg_POSEIDON   HashAlg = 2
	HashAlg_NONE       HashAlg = 3
)

func (HashAlg) Descriptor added in v2.7.0

func (HashAlg) Descriptor() protoreflect.EnumDescriptor

func (HashAlg) Enum added in v2.7.0

func (x HashAlg) Enum() *HashAlg

func (HashAlg) EnumDescriptor deprecated added in v2.7.0

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

Deprecated: Use HashAlg.Descriptor instead.

func (HashAlg) Number added in v2.7.0

func (x HashAlg) Number() protoreflect.EnumNumber

func (HashAlg) String added in v2.7.0

func (x HashAlg) String() string

func (HashAlg) Type added in v2.7.0

func (HashAlg) Type() protoreflect.EnumType

type IdentityCoreServiceClient added in v2.8.0

type IdentityCoreServiceClient interface {
	CreateCoreCredential(ctx context.Context, in *CreateCoreCredentialRequest, opts ...grpc.CallOption) (*CreateCoreCredentialResponse, error)
}

IdentityCoreServiceClient is the client API for IdentityCoreService 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 NewIdentityCoreServiceClient added in v2.8.0

func NewIdentityCoreServiceClient(cc grpc.ClientConnInterface) IdentityCoreServiceClient

type IdentityCoreServiceServer added in v2.8.0

type IdentityCoreServiceServer interface {
	CreateCoreCredential(context.Context, *CreateCoreCredentialRequest) (*CreateCoreCredentialResponse, error)
	// contains filtered or unexported methods
}

IdentityCoreServiceServer is the server API for IdentityCoreService service. All implementations must embed UnimplementedIdentityCoreServiceServer for forward compatibility

type IdentityServiceClient added in v2.5.0

type IdentityServiceClient interface {
	CreateHolder(ctx context.Context, in *CreateHolderRequest, opts ...grpc.CallOption) (*CreateHolderResponse, error)
	CreateIssuer(ctx context.Context, in *CreateIssuerRequest, opts ...grpc.CallOption) (*CreateIssuerResponse, error)
	ImportIssuer(ctx context.Context, in *ImportIssuerRequest, opts ...grpc.CallOption) (*ImportIssuerResponse, error)
	BuildSchema(ctx context.Context, in *BuildSchemaRequest, opts ...grpc.CallOption) (*BuildSchemaResponse, error)
	GetSchema(ctx context.Context, in *GetSchemaRequest, opts ...grpc.CallOption) (*GetSchemaResponse, error)
	CreateCredential(ctx context.Context, in *CreateCredentialRequest, opts ...grpc.CallOption) (*CreateCredentialResponse, error)
	GetCredential(ctx context.Context, in *GetCredentialRequest, opts ...grpc.CallOption) (*GetCredentialResponse, error)
	GetCredentialProof(ctx context.Context, in *GetCredentialProofRequest, opts ...grpc.CallOption) (*GetCredentialProofResponse, error)
	RevokeCredential(ctx context.Context, in *RevokeCredentialRequest, opts ...grpc.CallOption) (*RevokeCredentialResponse, error)
	CredentialToJson(ctx context.Context, in *CredentialToJsonRequest, opts ...grpc.CallOption) (*CredentialToJsonResponse, error)
	CredentialFromJson(ctx context.Context, in *CredentialFromJsonRequest, opts ...grpc.CallOption) (*CredentialFromJsonResponse, error)
	GetCredentialOffer(ctx context.Context, in *GetCredentialOfferRequest, opts ...grpc.CallOption) (*GetCredentialOfferResponse, error)
	ForcePublishIssuerState(ctx context.Context, in *ForcePublishIssuerStateRequest, opts ...grpc.CallOption) (*ForcePublishIssuerStateResponse, error)
	CreateVerification(ctx context.Context, in *CreateVerificationRequest, opts ...grpc.CallOption) (*CreateVerificationResponse, error)
	WaitVerification(ctx context.Context, in *WaitVerificationRequest, opts ...grpc.CallOption) (*WaitVerificationResponse, error)
	GetVerificationStatus(ctx context.Context, in *GetVerificationStatusRequest, opts ...grpc.CallOption) (*GetVerificationStatusResponse, error)
}

IdentityServiceClient is the client API for IdentityService 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 NewIdentityServiceClient added in v2.5.0

func NewIdentityServiceClient(cc grpc.ClientConnInterface) IdentityServiceClient

type IdentityServiceServer added in v2.5.0

type IdentityServiceServer interface {
	CreateHolder(context.Context, *CreateHolderRequest) (*CreateHolderResponse, error)
	CreateIssuer(context.Context, *CreateIssuerRequest) (*CreateIssuerResponse, error)
	ImportIssuer(context.Context, *ImportIssuerRequest) (*ImportIssuerResponse, error)
	BuildSchema(context.Context, *BuildSchemaRequest) (*BuildSchemaResponse, error)
	GetSchema(context.Context, *GetSchemaRequest) (*GetSchemaResponse, error)
	CreateCredential(context.Context, *CreateCredentialRequest) (*CreateCredentialResponse, error)
	GetCredential(context.Context, *GetCredentialRequest) (*GetCredentialResponse, error)
	GetCredentialProof(context.Context, *GetCredentialProofRequest) (*GetCredentialProofResponse, error)
	RevokeCredential(context.Context, *RevokeCredentialRequest) (*RevokeCredentialResponse, error)
	CredentialToJson(context.Context, *CredentialToJsonRequest) (*CredentialToJsonResponse, error)
	CredentialFromJson(context.Context, *CredentialFromJsonRequest) (*CredentialFromJsonResponse, error)
	GetCredentialOffer(context.Context, *GetCredentialOfferRequest) (*GetCredentialOfferResponse, error)
	ForcePublishIssuerState(context.Context, *ForcePublishIssuerStateRequest) (*ForcePublishIssuerStateResponse, error)
	CreateVerification(context.Context, *CreateVerificationRequest) (*CreateVerificationResponse, error)
	WaitVerification(context.Context, *WaitVerificationRequest) (*WaitVerificationResponse, error)
	GetVerificationStatus(context.Context, *GetVerificationStatusRequest) (*GetVerificationStatusResponse, error)
	// contains filtered or unexported methods
}

IdentityServiceServer is the server API for IdentityService service. All implementations must embed UnimplementedIdentityServiceServer for forward compatibility

type ImportIssuerRequest added in v2.8.0

type ImportIssuerRequest struct {
	Key        *Key        `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	ConfigData *ConfigData `protobuf:"bytes,2,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	DidMethod  DidMethod   `protobuf:"varint,3,opt,name=did_method,json=didMethod,proto3,enum=bloock.DidMethod" json:"did_method,omitempty"`
	// contains filtered or unexported fields
}

func (*ImportIssuerRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use ImportIssuerRequest.ProtoReflect.Descriptor instead.

func (*ImportIssuerRequest) GetConfigData added in v2.8.0

func (x *ImportIssuerRequest) GetConfigData() *ConfigData

func (*ImportIssuerRequest) GetDidMethod added in v2.8.0

func (x *ImportIssuerRequest) GetDidMethod() DidMethod

func (*ImportIssuerRequest) GetKey added in v2.8.0

func (x *ImportIssuerRequest) GetKey() *Key

func (*ImportIssuerRequest) ProtoMessage added in v2.8.0

func (*ImportIssuerRequest) ProtoMessage()

func (*ImportIssuerRequest) ProtoReflect added in v2.8.0

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

func (*ImportIssuerRequest) Reset added in v2.8.0

func (x *ImportIssuerRequest) Reset()

func (*ImportIssuerRequest) String added in v2.8.0

func (x *ImportIssuerRequest) String() string

type ImportIssuerResponse added in v2.8.0

type ImportIssuerResponse struct {
	Did   string `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
	Error *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ImportIssuerResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use ImportIssuerResponse.ProtoReflect.Descriptor instead.

func (*ImportIssuerResponse) GetDid added in v2.8.0

func (x *ImportIssuerResponse) GetDid() string

func (*ImportIssuerResponse) GetError added in v2.8.0

func (x *ImportIssuerResponse) GetError() *Error

func (*ImportIssuerResponse) ProtoMessage added in v2.8.0

func (*ImportIssuerResponse) ProtoMessage()

func (*ImportIssuerResponse) ProtoReflect added in v2.8.0

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

func (*ImportIssuerResponse) Reset added in v2.8.0

func (x *ImportIssuerResponse) Reset()

func (*ImportIssuerResponse) String added in v2.8.0

func (x *ImportIssuerResponse) String() string

type ImportManagedCertificateRequest added in v2.7.0

type ImportManagedCertificateRequest struct {
	ConfigData      *ConfigData     `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Certificate     []byte          `protobuf:"bytes,2,opt,name=certificate,proto3" json:"certificate,omitempty"`
	Password        *string         `protobuf:"bytes,3,opt,name=password,proto3,oneof" json:"password,omitempty"`
	CertificateType CertificateType `` /* 135-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ImportManagedCertificateRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use ImportManagedCertificateRequest.ProtoReflect.Descriptor instead.

func (*ImportManagedCertificateRequest) GetCertificate added in v2.7.0

func (x *ImportManagedCertificateRequest) GetCertificate() []byte

func (*ImportManagedCertificateRequest) GetCertificateType added in v2.7.0

func (x *ImportManagedCertificateRequest) GetCertificateType() CertificateType

func (*ImportManagedCertificateRequest) GetConfigData added in v2.7.0

func (x *ImportManagedCertificateRequest) GetConfigData() *ConfigData

func (*ImportManagedCertificateRequest) GetPassword added in v2.7.0

func (x *ImportManagedCertificateRequest) GetPassword() string

func (*ImportManagedCertificateRequest) ProtoMessage added in v2.7.0

func (*ImportManagedCertificateRequest) ProtoMessage()

func (*ImportManagedCertificateRequest) ProtoReflect added in v2.7.0

func (*ImportManagedCertificateRequest) Reset added in v2.7.0

func (*ImportManagedCertificateRequest) String added in v2.7.0

type ImportManagedCertificateResponse added in v2.7.0

type ImportManagedCertificateResponse struct {
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,1,opt,name=managed_certificate,json=managedCertificate,proto3" json:"managed_certificate,omitempty"`
	Error              *Error              `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ImportManagedCertificateResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use ImportManagedCertificateResponse.ProtoReflect.Descriptor instead.

func (*ImportManagedCertificateResponse) GetError added in v2.7.0

func (x *ImportManagedCertificateResponse) GetError() *Error

func (*ImportManagedCertificateResponse) GetManagedCertificate added in v2.7.0

func (x *ImportManagedCertificateResponse) GetManagedCertificate() *ManagedCertificate

func (*ImportManagedCertificateResponse) ProtoMessage added in v2.7.0

func (*ImportManagedCertificateResponse) ProtoMessage()

func (*ImportManagedCertificateResponse) ProtoReflect added in v2.7.0

func (*ImportManagedCertificateResponse) Reset added in v2.7.0

func (*ImportManagedCertificateResponse) String added in v2.7.0

type IntegerAttribute added in v2.8.0

type IntegerAttribute struct {
	Id    string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Value int64  `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*IntegerAttribute) Descriptor deprecated added in v2.8.0

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

Deprecated: Use IntegerAttribute.ProtoReflect.Descriptor instead.

func (*IntegerAttribute) GetId added in v2.8.0

func (x *IntegerAttribute) GetId() string

func (*IntegerAttribute) GetValue added in v2.8.0

func (x *IntegerAttribute) GetValue() int64

func (*IntegerAttribute) ProtoMessage added in v2.8.0

func (*IntegerAttribute) ProtoMessage()

func (*IntegerAttribute) ProtoReflect added in v2.8.0

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

func (*IntegerAttribute) Reset added in v2.8.0

func (x *IntegerAttribute) Reset()

func (*IntegerAttribute) String added in v2.8.0

func (x *IntegerAttribute) String() string

type IntegerAttributeDefinition added in v2.8.0

type IntegerAttributeDefinition struct {
	DisplayName string `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool   `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	// contains filtered or unexported fields
}

func (*IntegerAttributeDefinition) Descriptor deprecated added in v2.8.0

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

Deprecated: Use IntegerAttributeDefinition.ProtoReflect.Descriptor instead.

func (*IntegerAttributeDefinition) GetDescription added in v2.8.0

func (x *IntegerAttributeDefinition) GetDescription() string

func (*IntegerAttributeDefinition) GetDisplayName added in v2.8.0

func (x *IntegerAttributeDefinition) GetDisplayName() string

func (*IntegerAttributeDefinition) GetId added in v2.8.0

func (*IntegerAttributeDefinition) GetRequired added in v2.8.0

func (x *IntegerAttributeDefinition) GetRequired() bool

func (*IntegerAttributeDefinition) ProtoMessage added in v2.8.0

func (*IntegerAttributeDefinition) ProtoMessage()

func (*IntegerAttributeDefinition) ProtoReflect added in v2.8.0

func (*IntegerAttributeDefinition) Reset added in v2.8.0

func (x *IntegerAttributeDefinition) Reset()

func (*IntegerAttributeDefinition) String added in v2.8.0

func (x *IntegerAttributeDefinition) String() string

type IntegerEnumAttributeDefinition added in v2.8.0

type IntegerEnumAttributeDefinition struct {
	DisplayName string  `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string  `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string  `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool    `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	Enum        []int64 `protobuf:"varint,5,rep,packed,name=enum,proto3" json:"enum,omitempty"`
	// contains filtered or unexported fields
}

func (*IntegerEnumAttributeDefinition) Descriptor deprecated added in v2.8.0

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

Deprecated: Use IntegerEnumAttributeDefinition.ProtoReflect.Descriptor instead.

func (*IntegerEnumAttributeDefinition) GetDescription added in v2.8.0

func (x *IntegerEnumAttributeDefinition) GetDescription() string

func (*IntegerEnumAttributeDefinition) GetDisplayName added in v2.8.0

func (x *IntegerEnumAttributeDefinition) GetDisplayName() string

func (*IntegerEnumAttributeDefinition) GetEnum added in v2.8.0

func (x *IntegerEnumAttributeDefinition) GetEnum() []int64

func (*IntegerEnumAttributeDefinition) GetId added in v2.8.0

func (*IntegerEnumAttributeDefinition) GetRequired added in v2.8.0

func (x *IntegerEnumAttributeDefinition) GetRequired() bool

func (*IntegerEnumAttributeDefinition) ProtoMessage added in v2.8.0

func (*IntegerEnumAttributeDefinition) ProtoMessage()

func (*IntegerEnumAttributeDefinition) ProtoReflect added in v2.8.0

func (*IntegerEnumAttributeDefinition) Reset added in v2.8.0

func (x *IntegerEnumAttributeDefinition) Reset()

func (*IntegerEnumAttributeDefinition) String added in v2.8.0

type IntegrityDetails added in v2.7.0

type IntegrityDetails struct {
	Hash  string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Proof *Proof `protobuf:"bytes,2,opt,name=proof,proto3,oneof" json:"proof,omitempty"`
	// contains filtered or unexported fields
}

func (*IntegrityDetails) Descriptor deprecated added in v2.7.0

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

Deprecated: Use IntegrityDetails.ProtoReflect.Descriptor instead.

func (*IntegrityDetails) GetHash added in v2.7.0

func (x *IntegrityDetails) GetHash() string

func (*IntegrityDetails) GetProof added in v2.7.0

func (x *IntegrityDetails) GetProof() *Proof

func (*IntegrityDetails) ProtoMessage added in v2.7.0

func (*IntegrityDetails) ProtoMessage()

func (*IntegrityDetails) ProtoReflect added in v2.7.0

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

func (*IntegrityDetails) Reset added in v2.7.0

func (x *IntegrityDetails) Reset()

func (*IntegrityDetails) String added in v2.7.0

func (x *IntegrityDetails) String() string

type IntegrityServiceClient added in v2.4.0

type IntegrityServiceClient interface {
	SendRecords(ctx context.Context, in *SendRecordsRequest, opts ...grpc.CallOption) (*SendRecordsResponse, error)
	GetAnchor(ctx context.Context, in *GetAnchorRequest, opts ...grpc.CallOption) (*GetAnchorResponse, error)
	WaitAnchor(ctx context.Context, in *WaitAnchorRequest, opts ...grpc.CallOption) (*WaitAnchorResponse, error)
	GetProof(ctx context.Context, in *GetProofRequest, opts ...grpc.CallOption) (*GetProofResponse, error)
	ValidateRoot(ctx context.Context, in *ValidateRootRequest, opts ...grpc.CallOption) (*ValidateRootResponse, error)
	VerifyProof(ctx context.Context, in *VerifyProofRequest, opts ...grpc.CallOption) (*VerifyProofResponse, error)
	VerifyRecords(ctx context.Context, in *VerifyRecordsRequest, opts ...grpc.CallOption) (*VerifyRecordsResponse, error)
}

IntegrityServiceClient is the client API for IntegrityService 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 NewIntegrityServiceClient added in v2.4.0

func NewIntegrityServiceClient(cc grpc.ClientConnInterface) IntegrityServiceClient

type IntegrityServiceServer added in v2.4.0

IntegrityServiceServer is the server API for IntegrityService service. All implementations must embed UnimplementedIntegrityServiceServer for forward compatibility

type IpnsKey added in v2.9.3

type IpnsKey struct {
	KeyId string `protobuf:"bytes,1,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty"`
	// contains filtered or unexported fields
}

func (*IpnsKey) Descriptor deprecated added in v2.9.3

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

Deprecated: Use IpnsKey.ProtoReflect.Descriptor instead.

func (*IpnsKey) GetKeyId added in v2.9.6

func (x *IpnsKey) GetKeyId() string

func (*IpnsKey) ProtoMessage added in v2.9.3

func (*IpnsKey) ProtoMessage()

func (*IpnsKey) ProtoReflect added in v2.9.3

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

func (*IpnsKey) Reset added in v2.9.3

func (x *IpnsKey) Reset()

func (*IpnsKey) String added in v2.9.3

func (x *IpnsKey) String() string

type IssuerStateReceipt added in v2.6.0

type IssuerStateReceipt struct {
	TxHash string `protobuf:"bytes,1,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*IssuerStateReceipt) Descriptor deprecated added in v2.6.0

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

Deprecated: Use IssuerStateReceipt.ProtoReflect.Descriptor instead.

func (*IssuerStateReceipt) GetTxHash added in v2.6.0

func (x *IssuerStateReceipt) GetTxHash() string

func (*IssuerStateReceipt) ProtoMessage added in v2.6.0

func (*IssuerStateReceipt) ProtoMessage()

func (*IssuerStateReceipt) ProtoReflect added in v2.6.0

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

func (*IssuerStateReceipt) Reset added in v2.6.0

func (x *IssuerStateReceipt) Reset()

func (*IssuerStateReceipt) String added in v2.6.0

func (x *IssuerStateReceipt) String() string

type Key added in v2.8.0

type Key struct {
	LocalKey   *LocalKey   `protobuf:"bytes,1,opt,name=local_key,json=localKey,proto3,oneof" json:"local_key,omitempty"`
	ManagedKey *ManagedKey `protobuf:"bytes,2,opt,name=managed_key,json=managedKey,proto3,oneof" json:"managed_key,omitempty"`
	// contains filtered or unexported fields
}

func (*Key) Descriptor deprecated added in v2.8.0

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

Deprecated: Use Key.ProtoReflect.Descriptor instead.

func (*Key) GetLocalKey added in v2.8.0

func (x *Key) GetLocalKey() *LocalKey

func (*Key) GetManagedKey added in v2.8.0

func (x *Key) GetManagedKey() *ManagedKey

func (*Key) ProtoMessage added in v2.8.0

func (*Key) ProtoMessage()

func (*Key) ProtoReflect added in v2.8.0

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

func (*Key) Reset added in v2.8.0

func (x *Key) Reset()

func (*Key) String added in v2.8.0

func (x *Key) String() string

type KeyProtectionLevel added in v2.5.0

type KeyProtectionLevel int32
const (
	KeyProtectionLevel_SOFTWARE KeyProtectionLevel = 0
	KeyProtectionLevel_HSM      KeyProtectionLevel = 1
)

func (KeyProtectionLevel) Descriptor added in v2.5.0

func (KeyProtectionLevel) Enum added in v2.5.0

func (KeyProtectionLevel) EnumDescriptor deprecated added in v2.5.0

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

Deprecated: Use KeyProtectionLevel.Descriptor instead.

func (KeyProtectionLevel) Number added in v2.5.0

func (KeyProtectionLevel) String added in v2.5.0

func (x KeyProtectionLevel) String() string

func (KeyProtectionLevel) Type added in v2.5.0

type KeyServiceClient added in v2.5.0

type KeyServiceClient interface {
	GenerateLocalKey(ctx context.Context, in *GenerateLocalKeyRequest, opts ...grpc.CallOption) (*GenerateLocalKeyResponse, error)
	LoadLocalKey(ctx context.Context, in *LoadLocalKeyRequest, opts ...grpc.CallOption) (*LoadLocalKeyResponse, error)
	GenerateManagedKey(ctx context.Context, in *GenerateManagedKeyRequest, opts ...grpc.CallOption) (*GenerateManagedKeyResponse, error)
	LoadManagedKey(ctx context.Context, in *LoadManagedKeyRequest, opts ...grpc.CallOption) (*LoadManagedKeyResponse, error)
	GenerateLocalCertificate(ctx context.Context, in *GenerateLocalCertificateRequest, opts ...grpc.CallOption) (*GenerateLocalCertificateResponse, error)
	LoadLocalCertificate(ctx context.Context, in *LoadLocalCertificateRequest, opts ...grpc.CallOption) (*LoadLocalCertificateResponse, error)
	GenerateManagedCertificate(ctx context.Context, in *GenerateManagedCertificateRequest, opts ...grpc.CallOption) (*GenerateManagedCertificateResponse, error)
	LoadManagedCertificate(ctx context.Context, in *LoadManagedCertificateRequest, opts ...grpc.CallOption) (*LoadManagedCertificateResponse, error)
	ImportManagedCertificate(ctx context.Context, in *ImportManagedCertificateRequest, opts ...grpc.CallOption) (*ImportManagedCertificateResponse, error)
	SetupTotpAccessControl(ctx context.Context, in *SetupTotpAccessControlRequest, opts ...grpc.CallOption) (*SetupTotpAccessControlResponse, error)
	SetupSecretAccessControl(ctx context.Context, in *SetupSecretAccessControlRequest, opts ...grpc.CallOption) (*SetupSecretAccessControlResponse, error)
	RecoverTotpAccessControl(ctx context.Context, in *RecoverTotpAccessControlRequest, opts ...grpc.CallOption) (*RecoverTotpAccessControlResponse, error)
}

KeyServiceClient is the client API for KeyService 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 NewKeyServiceClient added in v2.5.0

func NewKeyServiceClient(cc grpc.ClientConnInterface) KeyServiceClient

type KeyServiceServer added in v2.5.0

KeyServiceServer is the server API for KeyService service. All implementations must embed UnimplementedKeyServiceServer for forward compatibility

type KeyType added in v2.5.0

type KeyType int32
const (
	KeyType_EcP256k KeyType = 0
	KeyType_Rsa2048 KeyType = 1
	KeyType_Rsa3072 KeyType = 2
	KeyType_Rsa4096 KeyType = 3
	KeyType_Aes128  KeyType = 4
	KeyType_Aes256  KeyType = 5
	KeyType_Bjj     KeyType = 6
)

func (KeyType) Descriptor added in v2.5.0

func (KeyType) Descriptor() protoreflect.EnumDescriptor

func (KeyType) Enum added in v2.5.0

func (x KeyType) Enum() *KeyType

func (KeyType) EnumDescriptor deprecated added in v2.5.0

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

Deprecated: Use KeyType.Descriptor instead.

func (KeyType) Number added in v2.5.0

func (x KeyType) Number() protoreflect.EnumNumber

func (KeyType) String added in v2.5.0

func (x KeyType) String() string

func (KeyType) Type added in v2.5.0

func (KeyType) Type() protoreflect.EnumType

type LoadLocalCertificateRequest added in v2.7.0

type LoadLocalCertificateRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Pkcs12     []byte      `protobuf:"bytes,2,opt,name=pkcs12,proto3" json:"pkcs12,omitempty"`
	Password   string      `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadLocalCertificateRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use LoadLocalCertificateRequest.ProtoReflect.Descriptor instead.

func (*LoadLocalCertificateRequest) GetConfigData added in v2.7.0

func (x *LoadLocalCertificateRequest) GetConfigData() *ConfigData

func (*LoadLocalCertificateRequest) GetPassword added in v2.7.0

func (x *LoadLocalCertificateRequest) GetPassword() string

func (*LoadLocalCertificateRequest) GetPkcs12 added in v2.7.0

func (x *LoadLocalCertificateRequest) GetPkcs12() []byte

func (*LoadLocalCertificateRequest) ProtoMessage added in v2.7.0

func (*LoadLocalCertificateRequest) ProtoMessage()

func (*LoadLocalCertificateRequest) ProtoReflect added in v2.7.0

func (*LoadLocalCertificateRequest) Reset added in v2.7.0

func (x *LoadLocalCertificateRequest) Reset()

func (*LoadLocalCertificateRequest) String added in v2.7.0

func (x *LoadLocalCertificateRequest) String() string

type LoadLocalCertificateResponse added in v2.7.0

type LoadLocalCertificateResponse struct {
	LocalCertificate *LocalCertificate `protobuf:"bytes,1,opt,name=local_certificate,json=localCertificate,proto3" json:"local_certificate,omitempty"`
	Error            *Error            `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadLocalCertificateResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use LoadLocalCertificateResponse.ProtoReflect.Descriptor instead.

func (*LoadLocalCertificateResponse) GetError added in v2.7.0

func (x *LoadLocalCertificateResponse) GetError() *Error

func (*LoadLocalCertificateResponse) GetLocalCertificate added in v2.7.0

func (x *LoadLocalCertificateResponse) GetLocalCertificate() *LocalCertificate

func (*LoadLocalCertificateResponse) ProtoMessage added in v2.7.0

func (*LoadLocalCertificateResponse) ProtoMessage()

func (*LoadLocalCertificateResponse) ProtoReflect added in v2.7.0

func (*LoadLocalCertificateResponse) Reset added in v2.7.0

func (x *LoadLocalCertificateResponse) Reset()

func (*LoadLocalCertificateResponse) String added in v2.7.0

type LoadLocalKeyRequest added in v2.5.0

type LoadLocalKeyRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	KeyType    KeyType     `protobuf:"varint,2,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	Key        string      `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadLocalKeyRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use LoadLocalKeyRequest.ProtoReflect.Descriptor instead.

func (*LoadLocalKeyRequest) GetConfigData added in v2.5.0

func (x *LoadLocalKeyRequest) GetConfigData() *ConfigData

func (*LoadLocalKeyRequest) GetKey added in v2.5.0

func (x *LoadLocalKeyRequest) GetKey() string

func (*LoadLocalKeyRequest) GetKeyType added in v2.5.0

func (x *LoadLocalKeyRequest) GetKeyType() KeyType

func (*LoadLocalKeyRequest) ProtoMessage added in v2.5.0

func (*LoadLocalKeyRequest) ProtoMessage()

func (*LoadLocalKeyRequest) ProtoReflect added in v2.5.0

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

func (*LoadLocalKeyRequest) Reset added in v2.5.0

func (x *LoadLocalKeyRequest) Reset()

func (*LoadLocalKeyRequest) String added in v2.5.0

func (x *LoadLocalKeyRequest) String() string

type LoadLocalKeyResponse added in v2.5.0

type LoadLocalKeyResponse struct {
	LocalKey *LocalKey `protobuf:"bytes,1,opt,name=local_key,json=localKey,proto3" json:"local_key,omitempty"`
	Error    *Error    `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadLocalKeyResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use LoadLocalKeyResponse.ProtoReflect.Descriptor instead.

func (*LoadLocalKeyResponse) GetError added in v2.5.0

func (x *LoadLocalKeyResponse) GetError() *Error

func (*LoadLocalKeyResponse) GetLocalKey added in v2.5.0

func (x *LoadLocalKeyResponse) GetLocalKey() *LocalKey

func (*LoadLocalKeyResponse) ProtoMessage added in v2.5.0

func (*LoadLocalKeyResponse) ProtoMessage()

func (*LoadLocalKeyResponse) ProtoReflect added in v2.5.0

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

func (*LoadLocalKeyResponse) Reset added in v2.5.0

func (x *LoadLocalKeyResponse) Reset()

func (*LoadLocalKeyResponse) String added in v2.5.0

func (x *LoadLocalKeyResponse) String() string

type LoadManagedCertificateRequest added in v2.7.0

type LoadManagedCertificateRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Id         string      `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadManagedCertificateRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use LoadManagedCertificateRequest.ProtoReflect.Descriptor instead.

func (*LoadManagedCertificateRequest) GetConfigData added in v2.7.0

func (x *LoadManagedCertificateRequest) GetConfigData() *ConfigData

func (*LoadManagedCertificateRequest) GetId added in v2.7.0

func (*LoadManagedCertificateRequest) ProtoMessage added in v2.7.0

func (*LoadManagedCertificateRequest) ProtoMessage()

func (*LoadManagedCertificateRequest) ProtoReflect added in v2.7.0

func (*LoadManagedCertificateRequest) Reset added in v2.7.0

func (x *LoadManagedCertificateRequest) Reset()

func (*LoadManagedCertificateRequest) String added in v2.7.0

type LoadManagedCertificateResponse added in v2.7.0

type LoadManagedCertificateResponse struct {
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,1,opt,name=managed_certificate,json=managedCertificate,proto3" json:"managed_certificate,omitempty"`
	Error              *Error              `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadManagedCertificateResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use LoadManagedCertificateResponse.ProtoReflect.Descriptor instead.

func (*LoadManagedCertificateResponse) GetError added in v2.7.0

func (x *LoadManagedCertificateResponse) GetError() *Error

func (*LoadManagedCertificateResponse) GetManagedCertificate added in v2.7.0

func (x *LoadManagedCertificateResponse) GetManagedCertificate() *ManagedCertificate

func (*LoadManagedCertificateResponse) ProtoMessage added in v2.7.0

func (*LoadManagedCertificateResponse) ProtoMessage()

func (*LoadManagedCertificateResponse) ProtoReflect added in v2.7.0

func (*LoadManagedCertificateResponse) Reset added in v2.7.0

func (x *LoadManagedCertificateResponse) Reset()

func (*LoadManagedCertificateResponse) String added in v2.7.0

type LoadManagedKeyRequest added in v2.5.0

type LoadManagedKeyRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Id         string      `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadManagedKeyRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use LoadManagedKeyRequest.ProtoReflect.Descriptor instead.

func (*LoadManagedKeyRequest) GetConfigData added in v2.5.0

func (x *LoadManagedKeyRequest) GetConfigData() *ConfigData

func (*LoadManagedKeyRequest) GetId added in v2.5.0

func (x *LoadManagedKeyRequest) GetId() string

func (*LoadManagedKeyRequest) ProtoMessage added in v2.5.0

func (*LoadManagedKeyRequest) ProtoMessage()

func (*LoadManagedKeyRequest) ProtoReflect added in v2.5.0

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

func (*LoadManagedKeyRequest) Reset added in v2.5.0

func (x *LoadManagedKeyRequest) Reset()

func (*LoadManagedKeyRequest) String added in v2.5.0

func (x *LoadManagedKeyRequest) String() string

type LoadManagedKeyResponse added in v2.5.0

type LoadManagedKeyResponse struct {
	ManagedKey *ManagedKey `protobuf:"bytes,1,opt,name=managed_key,json=managedKey,proto3" json:"managed_key,omitempty"`
	Error      *Error      `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*LoadManagedKeyResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use LoadManagedKeyResponse.ProtoReflect.Descriptor instead.

func (*LoadManagedKeyResponse) GetError added in v2.5.0

func (x *LoadManagedKeyResponse) GetError() *Error

func (*LoadManagedKeyResponse) GetManagedKey added in v2.5.0

func (x *LoadManagedKeyResponse) GetManagedKey() *ManagedKey

func (*LoadManagedKeyResponse) ProtoMessage added in v2.5.0

func (*LoadManagedKeyResponse) ProtoMessage()

func (*LoadManagedKeyResponse) ProtoReflect added in v2.5.0

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

func (*LoadManagedKeyResponse) Reset added in v2.5.0

func (x *LoadManagedKeyResponse) Reset()

func (*LoadManagedKeyResponse) String added in v2.5.0

func (x *LoadManagedKeyResponse) String() string

type Loader

type Loader struct {
	Type DataAvailabilityType `protobuf:"varint,1,opt,name=type,proto3,enum=bloock.DataAvailabilityType" json:"type,omitempty"`
	Args *LoaderArgs          `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty"`
	// contains filtered or unexported fields
}

func (*Loader) Descriptor deprecated

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

Deprecated: Use Loader.ProtoReflect.Descriptor instead.

func (*Loader) GetArgs

func (x *Loader) GetArgs() *LoaderArgs

func (*Loader) GetType

func (x *Loader) GetType() DataAvailabilityType

func (*Loader) ProtoMessage

func (*Loader) ProtoMessage()

func (*Loader) ProtoReflect

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

func (*Loader) Reset

func (x *Loader) Reset()

func (*Loader) String

func (x *Loader) String() string

type LoaderArgs

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

func (*LoaderArgs) Descriptor deprecated

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

Deprecated: Use LoaderArgs.ProtoReflect.Descriptor instead.

func (*LoaderArgs) GetId added in v2.4.0

func (x *LoaderArgs) GetId() string

func (*LoaderArgs) ProtoMessage

func (*LoaderArgs) ProtoMessage()

func (*LoaderArgs) ProtoReflect

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

func (*LoaderArgs) Reset

func (x *LoaderArgs) Reset()

func (*LoaderArgs) String

func (x *LoaderArgs) String() string

type LocalCertificate added in v2.7.0

type LocalCertificate struct {
	Pkcs12   []byte `protobuf:"bytes,1,opt,name=pkcs12,proto3" json:"pkcs12,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*LocalCertificate) Descriptor deprecated added in v2.7.0

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

Deprecated: Use LocalCertificate.ProtoReflect.Descriptor instead.

func (*LocalCertificate) GetPassword added in v2.7.0

func (x *LocalCertificate) GetPassword() string

func (*LocalCertificate) GetPkcs12 added in v2.7.0

func (x *LocalCertificate) GetPkcs12() []byte

func (*LocalCertificate) ProtoMessage added in v2.7.0

func (*LocalCertificate) ProtoMessage()

func (*LocalCertificate) ProtoReflect added in v2.7.0

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

func (*LocalCertificate) Reset added in v2.7.0

func (x *LocalCertificate) Reset()

func (*LocalCertificate) String added in v2.7.0

func (x *LocalCertificate) String() string

type LocalCertificateParams added in v2.7.0

type LocalCertificateParams struct {
	KeyType    KeyType             `protobuf:"varint,1,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	Password   string              `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Subject    *CertificateSubject `protobuf:"bytes,3,opt,name=subject,proto3" json:"subject,omitempty"`
	Expiration int32               `protobuf:"varint,4,opt,name=expiration,proto3" json:"expiration,omitempty"`
	// contains filtered or unexported fields
}

func (*LocalCertificateParams) Descriptor deprecated added in v2.7.0

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

Deprecated: Use LocalCertificateParams.ProtoReflect.Descriptor instead.

func (*LocalCertificateParams) GetExpiration added in v2.7.0

func (x *LocalCertificateParams) GetExpiration() int32

func (*LocalCertificateParams) GetKeyType added in v2.7.0

func (x *LocalCertificateParams) GetKeyType() KeyType

func (*LocalCertificateParams) GetPassword added in v2.7.0

func (x *LocalCertificateParams) GetPassword() string

func (*LocalCertificateParams) GetSubject added in v2.7.0

func (x *LocalCertificateParams) GetSubject() *CertificateSubject

func (*LocalCertificateParams) ProtoMessage added in v2.7.0

func (*LocalCertificateParams) ProtoMessage()

func (*LocalCertificateParams) ProtoReflect added in v2.7.0

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

func (*LocalCertificateParams) Reset added in v2.7.0

func (x *LocalCertificateParams) Reset()

func (*LocalCertificateParams) String added in v2.7.0

func (x *LocalCertificateParams) String() string

type LocalKey added in v2.5.0

type LocalKey struct {
	Key        string  `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	KeyType    KeyType `protobuf:"varint,2,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	PrivateKey *string `protobuf:"bytes,3,opt,name=private_key,json=privateKey,proto3,oneof" json:"private_key,omitempty"`
	// contains filtered or unexported fields
}

func (*LocalKey) Descriptor deprecated added in v2.5.0

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

Deprecated: Use LocalKey.ProtoReflect.Descriptor instead.

func (*LocalKey) GetKey added in v2.5.0

func (x *LocalKey) GetKey() string

func (*LocalKey) GetKeyType added in v2.5.0

func (x *LocalKey) GetKeyType() KeyType

func (*LocalKey) GetPrivateKey added in v2.5.0

func (x *LocalKey) GetPrivateKey() string

func (*LocalKey) ProtoMessage added in v2.5.0

func (*LocalKey) ProtoMessage()

func (*LocalKey) ProtoReflect added in v2.5.0

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

func (*LocalKey) Reset added in v2.5.0

func (x *LocalKey) Reset()

func (*LocalKey) String added in v2.5.0

func (x *LocalKey) String() string

type ManagedCertificate added in v2.7.0

type ManagedCertificate struct {
	Id                string             `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Key               string             `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Protection        KeyProtectionLevel `protobuf:"varint,3,opt,name=protection,proto3,enum=bloock.KeyProtectionLevel" json:"protection,omitempty"`
	KeyType           KeyType            `protobuf:"varint,4,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	Expiration        int64              `protobuf:"varint,6,opt,name=expiration,proto3" json:"expiration,omitempty"`
	AccessControlType AccessControlType  `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ManagedCertificate) Descriptor deprecated added in v2.7.0

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

Deprecated: Use ManagedCertificate.ProtoReflect.Descriptor instead.

func (*ManagedCertificate) GetAccessControlType added in v2.8.5

func (x *ManagedCertificate) GetAccessControlType() AccessControlType

func (*ManagedCertificate) GetExpiration added in v2.7.0

func (x *ManagedCertificate) GetExpiration() int64

func (*ManagedCertificate) GetId added in v2.7.0

func (x *ManagedCertificate) GetId() string

func (*ManagedCertificate) GetKey added in v2.7.0

func (x *ManagedCertificate) GetKey() string

func (*ManagedCertificate) GetKeyType added in v2.7.0

func (x *ManagedCertificate) GetKeyType() KeyType

func (*ManagedCertificate) GetProtection added in v2.7.0

func (x *ManagedCertificate) GetProtection() KeyProtectionLevel

func (*ManagedCertificate) ProtoMessage added in v2.7.0

func (*ManagedCertificate) ProtoMessage()

func (*ManagedCertificate) ProtoReflect added in v2.7.0

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

func (*ManagedCertificate) Reset added in v2.7.0

func (x *ManagedCertificate) Reset()

func (*ManagedCertificate) String added in v2.7.0

func (x *ManagedCertificate) String() string

type ManagedCertificateParams added in v2.7.0

type ManagedCertificateParams struct {
	KeyType    KeyType             `protobuf:"varint,1,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	Expiration int32               `protobuf:"varint,2,opt,name=expiration,proto3" json:"expiration,omitempty"`
	Subject    *CertificateSubject `protobuf:"bytes,3,opt,name=subject,proto3" json:"subject,omitempty"`
	// contains filtered or unexported fields
}

func (*ManagedCertificateParams) Descriptor deprecated added in v2.7.0

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

Deprecated: Use ManagedCertificateParams.ProtoReflect.Descriptor instead.

func (*ManagedCertificateParams) GetExpiration added in v2.7.0

func (x *ManagedCertificateParams) GetExpiration() int32

func (*ManagedCertificateParams) GetKeyType added in v2.7.0

func (x *ManagedCertificateParams) GetKeyType() KeyType

func (*ManagedCertificateParams) GetSubject added in v2.7.0

func (*ManagedCertificateParams) ProtoMessage added in v2.7.0

func (*ManagedCertificateParams) ProtoMessage()

func (*ManagedCertificateParams) ProtoReflect added in v2.7.0

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

func (*ManagedCertificateParams) Reset added in v2.7.0

func (x *ManagedCertificateParams) Reset()

func (*ManagedCertificateParams) String added in v2.7.0

func (x *ManagedCertificateParams) String() string

type ManagedKey added in v2.5.0

type ManagedKey struct {
	Id                string             `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Key               string             `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Protection        KeyProtectionLevel `protobuf:"varint,3,opt,name=protection,proto3,enum=bloock.KeyProtectionLevel" json:"protection,omitempty"`
	KeyType           KeyType            `protobuf:"varint,4,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	Name              string             `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Expiration        int64              `protobuf:"varint,6,opt,name=expiration,proto3" json:"expiration,omitempty"`
	AccessControlType AccessControlType  `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ManagedKey) Descriptor deprecated added in v2.5.0

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

Deprecated: Use ManagedKey.ProtoReflect.Descriptor instead.

func (*ManagedKey) GetAccessControlType added in v2.8.5

func (x *ManagedKey) GetAccessControlType() AccessControlType

func (*ManagedKey) GetExpiration added in v2.5.0

func (x *ManagedKey) GetExpiration() int64

func (*ManagedKey) GetId added in v2.5.0

func (x *ManagedKey) GetId() string

func (*ManagedKey) GetKey added in v2.5.0

func (x *ManagedKey) GetKey() string

func (*ManagedKey) GetKeyType added in v2.5.0

func (x *ManagedKey) GetKeyType() KeyType

func (*ManagedKey) GetName added in v2.5.0

func (x *ManagedKey) GetName() string

func (*ManagedKey) GetProtection added in v2.5.0

func (x *ManagedKey) GetProtection() KeyProtectionLevel

func (*ManagedKey) ProtoMessage added in v2.5.0

func (*ManagedKey) ProtoMessage()

func (*ManagedKey) ProtoReflect added in v2.5.0

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

func (*ManagedKey) Reset added in v2.5.0

func (x *ManagedKey) Reset()

func (*ManagedKey) String added in v2.5.0

func (x *ManagedKey) String() string

type ManagedKeyParams added in v2.5.0

type ManagedKeyParams struct {
	Protection KeyProtectionLevel `protobuf:"varint,1,opt,name=protection,proto3,enum=bloock.KeyProtectionLevel" json:"protection,omitempty"`
	KeyType    KeyType            `protobuf:"varint,2,opt,name=key_type,json=keyType,proto3,enum=bloock.KeyType" json:"key_type,omitempty"`
	Name       *string            `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Expiration *int64             `protobuf:"varint,4,opt,name=expiration,proto3,oneof" json:"expiration,omitempty"`
	// contains filtered or unexported fields
}

func (*ManagedKeyParams) Descriptor deprecated added in v2.5.0

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

Deprecated: Use ManagedKeyParams.ProtoReflect.Descriptor instead.

func (*ManagedKeyParams) GetExpiration added in v2.5.0

func (x *ManagedKeyParams) GetExpiration() int64

func (*ManagedKeyParams) GetKeyType added in v2.5.0

func (x *ManagedKeyParams) GetKeyType() KeyType

func (*ManagedKeyParams) GetName added in v2.5.0

func (x *ManagedKeyParams) GetName() string

func (*ManagedKeyParams) GetProtection added in v2.5.0

func (x *ManagedKeyParams) GetProtection() KeyProtectionLevel

func (*ManagedKeyParams) ProtoMessage added in v2.5.0

func (*ManagedKeyParams) ProtoMessage()

func (*ManagedKeyParams) ProtoReflect added in v2.5.0

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

func (*ManagedKeyParams) Reset added in v2.5.0

func (x *ManagedKeyParams) Reset()

func (*ManagedKeyParams) String added in v2.5.0

func (x *ManagedKeyParams) String() string

type Network

type Network int32
const (
	Network_ETHEREUM_MAINNET Network = 0
	Network_ETHEREUM_SEPOLIA Network = 1
	Network_GNOSIS_CHAIN     Network = 2
	Network_POLYGON_CHAIN    Network = 3
)

func (Network) Descriptor

func (Network) Descriptor() protoreflect.EnumDescriptor

func (Network) Enum

func (x Network) Enum() *Network

func (Network) EnumDescriptor deprecated

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

Deprecated: Use Network.Descriptor instead.

func (Network) Number

func (x Network) Number() protoreflect.EnumNumber

func (Network) String

func (x Network) String() string

func (Network) Type

func (Network) Type() protoreflect.EnumType

type NetworkConfig

type NetworkConfig struct {
	ContractAddress string `protobuf:"bytes,1,opt,name=ContractAddress,proto3" json:"ContractAddress,omitempty"`
	ContractAbi     string `protobuf:"bytes,2,opt,name=ContractAbi,proto3" json:"ContractAbi,omitempty"`
	HttpProvider    string `protobuf:"bytes,3,opt,name=HttpProvider,proto3" json:"HttpProvider,omitempty"`
	// contains filtered or unexported fields
}

func (*NetworkConfig) Descriptor deprecated

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

Deprecated: Use NetworkConfig.ProtoReflect.Descriptor instead.

func (*NetworkConfig) GetContractAbi

func (x *NetworkConfig) GetContractAbi() string

func (*NetworkConfig) GetContractAddress

func (x *NetworkConfig) GetContractAddress() string

func (*NetworkConfig) GetHttpProvider

func (x *NetworkConfig) GetHttpProvider() string

func (*NetworkConfig) ProtoMessage

func (*NetworkConfig) ProtoMessage()

func (*NetworkConfig) ProtoReflect

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

func (*NetworkConfig) Reset

func (x *NetworkConfig) Reset()

func (*NetworkConfig) String

func (x *NetworkConfig) String() string

type Proof

type Proof struct {
	Leaves []string     `protobuf:"bytes,1,rep,name=leaves,proto3" json:"leaves,omitempty"`
	Nodes  []string     `protobuf:"bytes,2,rep,name=nodes,proto3" json:"nodes,omitempty"`
	Depth  string       `protobuf:"bytes,3,opt,name=depth,proto3" json:"depth,omitempty"`
	Bitmap string       `protobuf:"bytes,4,opt,name=bitmap,proto3" json:"bitmap,omitempty"`
	Anchor *ProofAnchor `protobuf:"bytes,5,opt,name=anchor,proto3" json:"anchor,omitempty"`
	// contains filtered or unexported fields
}

func (*Proof) Descriptor deprecated

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

Deprecated: Use Proof.ProtoReflect.Descriptor instead.

func (*Proof) GetAnchor

func (x *Proof) GetAnchor() *ProofAnchor

func (*Proof) GetBitmap

func (x *Proof) GetBitmap() string

func (*Proof) GetDepth

func (x *Proof) GetDepth() string

func (*Proof) GetLeaves

func (x *Proof) GetLeaves() []string

func (*Proof) GetNodes

func (x *Proof) GetNodes() []string

func (*Proof) ProtoMessage

func (*Proof) ProtoMessage()

func (*Proof) ProtoReflect

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

func (*Proof) Reset

func (x *Proof) Reset()

func (*Proof) String

func (x *Proof) String() string

type ProofAnchor

type ProofAnchor struct {
	AnchorId int64            `protobuf:"varint,1,opt,name=anchor_id,json=anchorId,proto3" json:"anchor_id,omitempty"`
	Networks []*AnchorNetwork `protobuf:"bytes,2,rep,name=networks,proto3" json:"networks,omitempty"`
	Root     string           `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	Status   string           `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*ProofAnchor) Descriptor deprecated

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

Deprecated: Use ProofAnchor.ProtoReflect.Descriptor instead.

func (*ProofAnchor) GetAnchorId

func (x *ProofAnchor) GetAnchorId() int64

func (*ProofAnchor) GetNetworks

func (x *ProofAnchor) GetNetworks() []*AnchorNetwork

func (*ProofAnchor) GetRoot

func (x *ProofAnchor) GetRoot() string

func (*ProofAnchor) GetStatus

func (x *ProofAnchor) GetStatus() string

func (*ProofAnchor) ProtoMessage

func (*ProofAnchor) ProtoMessage()

func (*ProofAnchor) ProtoReflect

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

func (*ProofAnchor) Reset

func (x *ProofAnchor) Reset()

func (*ProofAnchor) String

func (x *ProofAnchor) String() string

type PublishInterval added in v2.7.0

type PublishInterval int32
const (
	PublishInterval_INTERVAL_5  PublishInterval = 0
	PublishInterval_INTERVAL_15 PublishInterval = 1
	PublishInterval_INTERVAL_60 PublishInterval = 2
)

func (PublishInterval) Descriptor added in v2.7.0

func (PublishInterval) Enum added in v2.7.0

func (x PublishInterval) Enum() *PublishInterval

func (PublishInterval) EnumDescriptor deprecated added in v2.7.0

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

Deprecated: Use PublishInterval.Descriptor instead.

func (PublishInterval) Number added in v2.7.0

func (PublishInterval) String added in v2.7.0

func (x PublishInterval) String() string

func (PublishInterval) Type added in v2.7.0

type PublishRequest

type PublishRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	Publisher  *Publisher  `protobuf:"bytes,3,opt,name=publisher,proto3" json:"publisher,omitempty"`
	// contains filtered or unexported fields
}

func (*PublishRequest) Descriptor deprecated

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

Deprecated: Use PublishRequest.ProtoReflect.Descriptor instead.

func (*PublishRequest) GetConfigData

func (x *PublishRequest) GetConfigData() *ConfigData

func (*PublishRequest) GetPublisher

func (x *PublishRequest) GetPublisher() *Publisher

func (*PublishRequest) GetRecord

func (x *PublishRequest) GetRecord() *Record

func (*PublishRequest) ProtoMessage

func (*PublishRequest) ProtoMessage()

func (*PublishRequest) ProtoReflect

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

func (*PublishRequest) Reset

func (x *PublishRequest) Reset()

func (*PublishRequest) String

func (x *PublishRequest) String() string

type PublishResponse

type PublishResponse struct {
	Id      string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	IpnsKey *IpnsKey `protobuf:"bytes,2,opt,name=ipns_key,json=ipnsKey,proto3,oneof" json:"ipns_key,omitempty"`
	Error   *Error   `protobuf:"bytes,3,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*PublishResponse) Descriptor deprecated

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

Deprecated: Use PublishResponse.ProtoReflect.Descriptor instead.

func (*PublishResponse) GetError

func (x *PublishResponse) GetError() *Error

func (*PublishResponse) GetId added in v2.4.0

func (x *PublishResponse) GetId() string

func (*PublishResponse) GetIpnsKey added in v2.9.6

func (x *PublishResponse) GetIpnsKey() *IpnsKey

func (*PublishResponse) ProtoMessage

func (*PublishResponse) ProtoMessage()

func (*PublishResponse) ProtoReflect

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

func (*PublishResponse) Reset

func (x *PublishResponse) Reset()

func (*PublishResponse) String

func (x *PublishResponse) String() string

type Publisher

type Publisher struct {
	Type DataAvailabilityType `protobuf:"varint,1,opt,name=type,proto3,enum=bloock.DataAvailabilityType" json:"type,omitempty"`
	Args *PublisherArgs       `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty"`
	// contains filtered or unexported fields
}

func (*Publisher) Descriptor deprecated

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

Deprecated: Use Publisher.ProtoReflect.Descriptor instead.

func (*Publisher) GetArgs

func (x *Publisher) GetArgs() *PublisherArgs

func (*Publisher) GetType

func (x *Publisher) GetType() DataAvailabilityType

func (*Publisher) ProtoMessage

func (*Publisher) ProtoMessage()

func (*Publisher) ProtoReflect

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

func (*Publisher) Reset

func (x *Publisher) Reset()

func (*Publisher) String

func (x *Publisher) String() string

type PublisherArgs

type PublisherArgs struct {
	IpnsKey *IpnsKey `protobuf:"bytes,1,opt,name=ipns_key,json=ipnsKey,proto3,oneof" json:"ipns_key,omitempty"`
	// contains filtered or unexported fields
}

func (*PublisherArgs) Descriptor deprecated

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

Deprecated: Use PublisherArgs.ProtoReflect.Descriptor instead.

func (*PublisherArgs) GetIpnsKey added in v2.9.3

func (x *PublisherArgs) GetIpnsKey() *IpnsKey

func (*PublisherArgs) ProtoMessage

func (*PublisherArgs) ProtoMessage()

func (*PublisherArgs) ProtoReflect

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

func (*PublisherArgs) Reset

func (x *PublisherArgs) Reset()

func (*PublisherArgs) String

func (x *PublisherArgs) String() string

type Record

type Record struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3,oneof" json:"config_data,omitempty"`
	Payload    []byte      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Hash       string      `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*Record) Descriptor deprecated

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

Deprecated: Use Record.ProtoReflect.Descriptor instead.

func (*Record) GetConfigData added in v2.0.2

func (x *Record) GetConfigData() *ConfigData

func (*Record) GetHash added in v2.3.0

func (x *Record) GetHash() string

func (*Record) GetPayload

func (x *Record) GetPayload() []byte

func (*Record) ProtoMessage

func (*Record) ProtoMessage()

func (*Record) ProtoReflect

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

func (*Record) Reset

func (x *Record) Reset()

func (*Record) String

func (x *Record) String() string

type RecordBuilderFromBytesRequest

type RecordBuilderFromBytesRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload    []byte      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3,oneof" json:"signer,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,4,opt,name=encrypter,proto3,oneof" json:"encrypter,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,5,opt,name=decrypter,proto3,oneof" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderFromBytesRequest) Descriptor deprecated

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

Deprecated: Use RecordBuilderFromBytesRequest.ProtoReflect.Descriptor instead.

func (*RecordBuilderFromBytesRequest) GetConfigData added in v2.0.2

func (x *RecordBuilderFromBytesRequest) GetConfigData() *ConfigData

func (*RecordBuilderFromBytesRequest) GetDecrypter

func (x *RecordBuilderFromBytesRequest) GetDecrypter() *Encrypter

func (*RecordBuilderFromBytesRequest) GetEncrypter

func (x *RecordBuilderFromBytesRequest) GetEncrypter() *Encrypter

func (*RecordBuilderFromBytesRequest) GetPayload

func (x *RecordBuilderFromBytesRequest) GetPayload() []byte

func (*RecordBuilderFromBytesRequest) GetSigner

func (x *RecordBuilderFromBytesRequest) GetSigner() *Signer

func (*RecordBuilderFromBytesRequest) ProtoMessage

func (*RecordBuilderFromBytesRequest) ProtoMessage()

func (*RecordBuilderFromBytesRequest) ProtoReflect

func (*RecordBuilderFromBytesRequest) Reset

func (x *RecordBuilderFromBytesRequest) Reset()

func (*RecordBuilderFromBytesRequest) String

type RecordBuilderFromFileRequest

type RecordBuilderFromFileRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload    []byte      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3,oneof" json:"signer,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,4,opt,name=encrypter,proto3,oneof" json:"encrypter,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,5,opt,name=decrypter,proto3,oneof" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderFromFileRequest) Descriptor deprecated

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

Deprecated: Use RecordBuilderFromFileRequest.ProtoReflect.Descriptor instead.

func (*RecordBuilderFromFileRequest) GetConfigData added in v2.0.2

func (x *RecordBuilderFromFileRequest) GetConfigData() *ConfigData

func (*RecordBuilderFromFileRequest) GetDecrypter

func (x *RecordBuilderFromFileRequest) GetDecrypter() *Encrypter

func (*RecordBuilderFromFileRequest) GetEncrypter

func (x *RecordBuilderFromFileRequest) GetEncrypter() *Encrypter

func (*RecordBuilderFromFileRequest) GetPayload

func (x *RecordBuilderFromFileRequest) GetPayload() []byte

func (*RecordBuilderFromFileRequest) GetSigner

func (x *RecordBuilderFromFileRequest) GetSigner() *Signer

func (*RecordBuilderFromFileRequest) ProtoMessage

func (*RecordBuilderFromFileRequest) ProtoMessage()

func (*RecordBuilderFromFileRequest) ProtoReflect

func (*RecordBuilderFromFileRequest) Reset

func (x *RecordBuilderFromFileRequest) Reset()

func (*RecordBuilderFromFileRequest) String

type RecordBuilderFromHexRequest

type RecordBuilderFromHexRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload    string      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3,oneof" json:"signer,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,4,opt,name=encrypter,proto3,oneof" json:"encrypter,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,5,opt,name=decrypter,proto3,oneof" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderFromHexRequest) Descriptor deprecated

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

Deprecated: Use RecordBuilderFromHexRequest.ProtoReflect.Descriptor instead.

func (*RecordBuilderFromHexRequest) GetConfigData added in v2.0.2

func (x *RecordBuilderFromHexRequest) GetConfigData() *ConfigData

func (*RecordBuilderFromHexRequest) GetDecrypter

func (x *RecordBuilderFromHexRequest) GetDecrypter() *Encrypter

func (*RecordBuilderFromHexRequest) GetEncrypter

func (x *RecordBuilderFromHexRequest) GetEncrypter() *Encrypter

func (*RecordBuilderFromHexRequest) GetPayload

func (x *RecordBuilderFromHexRequest) GetPayload() string

func (*RecordBuilderFromHexRequest) GetSigner

func (x *RecordBuilderFromHexRequest) GetSigner() *Signer

func (*RecordBuilderFromHexRequest) ProtoMessage

func (*RecordBuilderFromHexRequest) ProtoMessage()

func (*RecordBuilderFromHexRequest) ProtoReflect

func (*RecordBuilderFromHexRequest) Reset

func (x *RecordBuilderFromHexRequest) Reset()

func (*RecordBuilderFromHexRequest) String

func (x *RecordBuilderFromHexRequest) String() string

type RecordBuilderFromJSONRequest

type RecordBuilderFromJSONRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload    string      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3,oneof" json:"signer,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,4,opt,name=encrypter,proto3,oneof" json:"encrypter,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,5,opt,name=decrypter,proto3,oneof" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderFromJSONRequest) Descriptor deprecated

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

Deprecated: Use RecordBuilderFromJSONRequest.ProtoReflect.Descriptor instead.

func (*RecordBuilderFromJSONRequest) GetConfigData added in v2.0.2

func (x *RecordBuilderFromJSONRequest) GetConfigData() *ConfigData

func (*RecordBuilderFromJSONRequest) GetDecrypter

func (x *RecordBuilderFromJSONRequest) GetDecrypter() *Encrypter

func (*RecordBuilderFromJSONRequest) GetEncrypter

func (x *RecordBuilderFromJSONRequest) GetEncrypter() *Encrypter

func (*RecordBuilderFromJSONRequest) GetPayload

func (x *RecordBuilderFromJSONRequest) GetPayload() string

func (*RecordBuilderFromJSONRequest) GetSigner

func (x *RecordBuilderFromJSONRequest) GetSigner() *Signer

func (*RecordBuilderFromJSONRequest) ProtoMessage

func (*RecordBuilderFromJSONRequest) ProtoMessage()

func (*RecordBuilderFromJSONRequest) ProtoReflect

func (*RecordBuilderFromJSONRequest) Reset

func (x *RecordBuilderFromJSONRequest) Reset()

func (*RecordBuilderFromJSONRequest) String

type RecordBuilderFromLoaderRequest

type RecordBuilderFromLoaderRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Loader     *Loader     `protobuf:"bytes,2,opt,name=loader,proto3" json:"loader,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3,oneof" json:"signer,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,4,opt,name=encrypter,proto3,oneof" json:"encrypter,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,5,opt,name=decrypter,proto3,oneof" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderFromLoaderRequest) Descriptor deprecated

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

Deprecated: Use RecordBuilderFromLoaderRequest.ProtoReflect.Descriptor instead.

func (*RecordBuilderFromLoaderRequest) GetConfigData

func (x *RecordBuilderFromLoaderRequest) GetConfigData() *ConfigData

func (*RecordBuilderFromLoaderRequest) GetDecrypter

func (x *RecordBuilderFromLoaderRequest) GetDecrypter() *Encrypter

func (*RecordBuilderFromLoaderRequest) GetEncrypter

func (x *RecordBuilderFromLoaderRequest) GetEncrypter() *Encrypter

func (*RecordBuilderFromLoaderRequest) GetLoader

func (x *RecordBuilderFromLoaderRequest) GetLoader() *Loader

func (*RecordBuilderFromLoaderRequest) GetSigner

func (x *RecordBuilderFromLoaderRequest) GetSigner() *Signer

func (*RecordBuilderFromLoaderRequest) ProtoMessage

func (*RecordBuilderFromLoaderRequest) ProtoMessage()

func (*RecordBuilderFromLoaderRequest) ProtoReflect

func (*RecordBuilderFromLoaderRequest) Reset

func (x *RecordBuilderFromLoaderRequest) Reset()

func (*RecordBuilderFromLoaderRequest) String

type RecordBuilderFromRecordRequest

type RecordBuilderFromRecordRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload    *Record     `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3,oneof" json:"signer,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,4,opt,name=encrypter,proto3,oneof" json:"encrypter,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,5,opt,name=decrypter,proto3,oneof" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderFromRecordRequest) Descriptor deprecated

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

Deprecated: Use RecordBuilderFromRecordRequest.ProtoReflect.Descriptor instead.

func (*RecordBuilderFromRecordRequest) GetConfigData added in v2.0.2

func (x *RecordBuilderFromRecordRequest) GetConfigData() *ConfigData

func (*RecordBuilderFromRecordRequest) GetDecrypter

func (x *RecordBuilderFromRecordRequest) GetDecrypter() *Encrypter

func (*RecordBuilderFromRecordRequest) GetEncrypter

func (x *RecordBuilderFromRecordRequest) GetEncrypter() *Encrypter

func (*RecordBuilderFromRecordRequest) GetPayload

func (x *RecordBuilderFromRecordRequest) GetPayload() *Record

func (*RecordBuilderFromRecordRequest) GetSigner

func (x *RecordBuilderFromRecordRequest) GetSigner() *Signer

func (*RecordBuilderFromRecordRequest) ProtoMessage

func (*RecordBuilderFromRecordRequest) ProtoMessage()

func (*RecordBuilderFromRecordRequest) ProtoReflect

func (*RecordBuilderFromRecordRequest) Reset

func (x *RecordBuilderFromRecordRequest) Reset()

func (*RecordBuilderFromRecordRequest) String

type RecordBuilderFromStringRequest

type RecordBuilderFromStringRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload    string      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3,oneof" json:"signer,omitempty"`
	Encrypter  *Encrypter  `protobuf:"bytes,4,opt,name=encrypter,proto3,oneof" json:"encrypter,omitempty"`
	Decrypter  *Encrypter  `protobuf:"bytes,5,opt,name=decrypter,proto3,oneof" json:"decrypter,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderFromStringRequest) Descriptor deprecated

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

Deprecated: Use RecordBuilderFromStringRequest.ProtoReflect.Descriptor instead.

func (*RecordBuilderFromStringRequest) GetConfigData added in v2.0.2

func (x *RecordBuilderFromStringRequest) GetConfigData() *ConfigData

func (*RecordBuilderFromStringRequest) GetDecrypter

func (x *RecordBuilderFromStringRequest) GetDecrypter() *Encrypter

func (*RecordBuilderFromStringRequest) GetEncrypter

func (x *RecordBuilderFromStringRequest) GetEncrypter() *Encrypter

func (*RecordBuilderFromStringRequest) GetPayload

func (x *RecordBuilderFromStringRequest) GetPayload() string

func (*RecordBuilderFromStringRequest) GetSigner

func (x *RecordBuilderFromStringRequest) GetSigner() *Signer

func (*RecordBuilderFromStringRequest) ProtoMessage

func (*RecordBuilderFromStringRequest) ProtoMessage()

func (*RecordBuilderFromStringRequest) ProtoReflect

func (*RecordBuilderFromStringRequest) Reset

func (x *RecordBuilderFromStringRequest) Reset()

func (*RecordBuilderFromStringRequest) String

type RecordBuilderResponse

type RecordBuilderResponse struct {
	Record *Record `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordBuilderResponse) Descriptor deprecated

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

Deprecated: Use RecordBuilderResponse.ProtoReflect.Descriptor instead.

func (*RecordBuilderResponse) GetError

func (x *RecordBuilderResponse) GetError() *Error

func (*RecordBuilderResponse) GetRecord

func (x *RecordBuilderResponse) GetRecord() *Record

func (*RecordBuilderResponse) ProtoMessage

func (*RecordBuilderResponse) ProtoMessage()

func (*RecordBuilderResponse) ProtoReflect

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

func (*RecordBuilderResponse) Reset

func (x *RecordBuilderResponse) Reset()

func (*RecordBuilderResponse) String

func (x *RecordBuilderResponse) String() string

type RecordDetails added in v2.7.0

type RecordDetails struct {
	Integrity    *IntegrityDetails    `protobuf:"bytes,1,opt,name=integrity,proto3,oneof" json:"integrity,omitempty"`
	Authenticity *AuthenticityDetails `protobuf:"bytes,2,opt,name=authenticity,proto3,oneof" json:"authenticity,omitempty"`
	Encryption   *EncryptionDetails   `protobuf:"bytes,3,opt,name=encryption,proto3,oneof" json:"encryption,omitempty"`
	Availability *AvailabilityDetails `protobuf:"bytes,4,opt,name=availability,proto3,oneof" json:"availability,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordDetails) Descriptor deprecated added in v2.7.0

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

Deprecated: Use RecordDetails.ProtoReflect.Descriptor instead.

func (*RecordDetails) GetAuthenticity added in v2.7.0

func (x *RecordDetails) GetAuthenticity() *AuthenticityDetails

func (*RecordDetails) GetAvailability added in v2.7.0

func (x *RecordDetails) GetAvailability() *AvailabilityDetails

func (*RecordDetails) GetEncryption added in v2.7.0

func (x *RecordDetails) GetEncryption() *EncryptionDetails

func (*RecordDetails) GetIntegrity added in v2.7.0

func (x *RecordDetails) GetIntegrity() *IntegrityDetails

func (*RecordDetails) ProtoMessage added in v2.7.0

func (*RecordDetails) ProtoMessage()

func (*RecordDetails) ProtoReflect added in v2.7.0

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

func (*RecordDetails) Reset added in v2.7.0

func (x *RecordDetails) Reset()

func (*RecordDetails) String added in v2.7.0

func (x *RecordDetails) String() string

type RecordHeader

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

func (*RecordHeader) Descriptor deprecated

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

Deprecated: Use RecordHeader.ProtoReflect.Descriptor instead.

func (*RecordHeader) GetTy

func (x *RecordHeader) GetTy() string

func (*RecordHeader) ProtoMessage

func (*RecordHeader) ProtoMessage()

func (*RecordHeader) ProtoReflect

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

func (*RecordHeader) Reset

func (x *RecordHeader) Reset()

func (*RecordHeader) String

func (x *RecordHeader) String() string

type RecordReceipt

type RecordReceipt struct {
	Anchor int64  `protobuf:"varint,1,opt,name=anchor,proto3" json:"anchor,omitempty"`
	Client string `protobuf:"bytes,2,opt,name=client,proto3" json:"client,omitempty"`
	Record string `protobuf:"bytes,3,opt,name=record,proto3" json:"record,omitempty"`
	Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*RecordReceipt) Descriptor deprecated

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

Deprecated: Use RecordReceipt.ProtoReflect.Descriptor instead.

func (*RecordReceipt) GetAnchor

func (x *RecordReceipt) GetAnchor() int64

func (*RecordReceipt) GetClient

func (x *RecordReceipt) GetClient() string

func (*RecordReceipt) GetRecord

func (x *RecordReceipt) GetRecord() string

func (*RecordReceipt) GetStatus

func (x *RecordReceipt) GetStatus() string

func (*RecordReceipt) ProtoMessage

func (*RecordReceipt) ProtoMessage()

func (*RecordReceipt) ProtoReflect

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

func (*RecordReceipt) Reset

func (x *RecordReceipt) Reset()

func (*RecordReceipt) String

func (x *RecordReceipt) String() string

type RecordServiceClient

RecordServiceClient is the client API for RecordService 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 RecordServiceServer

RecordServiceServer is the server API for RecordService service. All implementations must embed UnimplementedRecordServiceServer for forward compatibility

type RecordTypes

type RecordTypes int32
const (
	RecordTypes_STRING RecordTypes = 0
	RecordTypes_HEX    RecordTypes = 1
	RecordTypes_JSON   RecordTypes = 2
	RecordTypes_BYTES  RecordTypes = 3
	RecordTypes_FILE   RecordTypes = 4
	RecordTypes_RECORD RecordTypes = 5
	RecordTypes_LOADER RecordTypes = 6
)

func (RecordTypes) Descriptor

func (RecordTypes) Enum

func (x RecordTypes) Enum() *RecordTypes

func (RecordTypes) EnumDescriptor deprecated

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

Deprecated: Use RecordTypes.Descriptor instead.

func (RecordTypes) Number

func (x RecordTypes) Number() protoreflect.EnumNumber

func (RecordTypes) String

func (x RecordTypes) String() string

func (RecordTypes) Type

type RecoverTotpAccessControlRequest added in v2.8.0

type RecoverTotpAccessControlRequest struct {
	ConfigData         *ConfigData         `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Code               string              `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	ManagedKey         *ManagedKey         `protobuf:"bytes,3,opt,name=managed_key,json=managedKey,proto3,oneof" json:"managed_key,omitempty"`
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,4,opt,name=managed_certificate,json=managedCertificate,proto3,oneof" json:"managed_certificate,omitempty"`
	// contains filtered or unexported fields
}

func (*RecoverTotpAccessControlRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use RecoverTotpAccessControlRequest.ProtoReflect.Descriptor instead.

func (*RecoverTotpAccessControlRequest) GetCode added in v2.8.0

func (*RecoverTotpAccessControlRequest) GetConfigData added in v2.8.0

func (x *RecoverTotpAccessControlRequest) GetConfigData() *ConfigData

func (*RecoverTotpAccessControlRequest) GetManagedCertificate added in v2.8.0

func (x *RecoverTotpAccessControlRequest) GetManagedCertificate() *ManagedCertificate

func (*RecoverTotpAccessControlRequest) GetManagedKey added in v2.8.0

func (x *RecoverTotpAccessControlRequest) GetManagedKey() *ManagedKey

func (*RecoverTotpAccessControlRequest) ProtoMessage added in v2.8.0

func (*RecoverTotpAccessControlRequest) ProtoMessage()

func (*RecoverTotpAccessControlRequest) ProtoReflect added in v2.8.0

func (*RecoverTotpAccessControlRequest) Reset added in v2.8.0

func (*RecoverTotpAccessControlRequest) String added in v2.8.0

type RecoverTotpAccessControlResponse added in v2.8.0

type RecoverTotpAccessControlResponse struct {
	Secret        string   `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
	SecretQr      string   `protobuf:"bytes,2,opt,name=secret_qr,json=secretQr,proto3" json:"secret_qr,omitempty"`
	RecoveryCodes []string `protobuf:"bytes,3,rep,name=recovery_codes,json=recoveryCodes,proto3" json:"recovery_codes,omitempty"`
	Error         *Error   `protobuf:"bytes,4,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*RecoverTotpAccessControlResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use RecoverTotpAccessControlResponse.ProtoReflect.Descriptor instead.

func (*RecoverTotpAccessControlResponse) GetError added in v2.8.0

func (x *RecoverTotpAccessControlResponse) GetError() *Error

func (*RecoverTotpAccessControlResponse) GetRecoveryCodes added in v2.8.0

func (x *RecoverTotpAccessControlResponse) GetRecoveryCodes() []string

func (*RecoverTotpAccessControlResponse) GetSecret added in v2.8.0

func (*RecoverTotpAccessControlResponse) GetSecretQr added in v2.8.0

func (x *RecoverTotpAccessControlResponse) GetSecretQr() string

func (*RecoverTotpAccessControlResponse) ProtoMessage added in v2.8.0

func (*RecoverTotpAccessControlResponse) ProtoMessage()

func (*RecoverTotpAccessControlResponse) ProtoReflect added in v2.8.0

func (*RecoverTotpAccessControlResponse) Reset added in v2.8.0

func (*RecoverTotpAccessControlResponse) String added in v2.8.0

type RetrieveRequest added in v2.4.0

type RetrieveRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Loader     *Loader     `protobuf:"bytes,3,opt,name=loader,proto3" json:"loader,omitempty"`
	// contains filtered or unexported fields
}

func (*RetrieveRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use RetrieveRequest.ProtoReflect.Descriptor instead.

func (*RetrieveRequest) GetConfigData added in v2.4.0

func (x *RetrieveRequest) GetConfigData() *ConfigData

func (*RetrieveRequest) GetLoader added in v2.4.0

func (x *RetrieveRequest) GetLoader() *Loader

func (*RetrieveRequest) ProtoMessage added in v2.4.0

func (*RetrieveRequest) ProtoMessage()

func (*RetrieveRequest) ProtoReflect added in v2.4.0

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

func (*RetrieveRequest) Reset added in v2.4.0

func (x *RetrieveRequest) Reset()

func (*RetrieveRequest) String added in v2.4.0

func (x *RetrieveRequest) String() string

type RetrieveResponse added in v2.4.0

type RetrieveResponse struct {
	Record *Record `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*RetrieveResponse) Descriptor deprecated added in v2.4.0

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

Deprecated: Use RetrieveResponse.ProtoReflect.Descriptor instead.

func (*RetrieveResponse) GetError added in v2.4.0

func (x *RetrieveResponse) GetError() *Error

func (*RetrieveResponse) GetRecord added in v2.4.0

func (x *RetrieveResponse) GetRecord() *Record

func (*RetrieveResponse) ProtoMessage added in v2.4.0

func (*RetrieveResponse) ProtoMessage()

func (*RetrieveResponse) ProtoReflect added in v2.4.0

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

func (*RetrieveResponse) Reset added in v2.4.0

func (x *RetrieveResponse) Reset()

func (*RetrieveResponse) String added in v2.4.0

func (x *RetrieveResponse) String() string

type RevokeCredentialRequest added in v2.5.0

type RevokeCredentialRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Credential *Credential `protobuf:"bytes,2,opt,name=credential,proto3" json:"credential,omitempty"`
	Key        *Key        `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeCredentialRequest) Descriptor deprecated added in v2.5.0

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

Deprecated: Use RevokeCredentialRequest.ProtoReflect.Descriptor instead.

func (*RevokeCredentialRequest) GetConfigData added in v2.5.0

func (x *RevokeCredentialRequest) GetConfigData() *ConfigData

func (*RevokeCredentialRequest) GetCredential added in v2.5.0

func (x *RevokeCredentialRequest) GetCredential() *Credential

func (*RevokeCredentialRequest) GetKey added in v2.8.0

func (x *RevokeCredentialRequest) GetKey() *Key

func (*RevokeCredentialRequest) ProtoMessage added in v2.5.0

func (*RevokeCredentialRequest) ProtoMessage()

func (*RevokeCredentialRequest) ProtoReflect added in v2.5.0

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

func (*RevokeCredentialRequest) Reset added in v2.5.0

func (x *RevokeCredentialRequest) Reset()

func (*RevokeCredentialRequest) String added in v2.5.0

func (x *RevokeCredentialRequest) String() string

type RevokeCredentialResponse added in v2.5.0

type RevokeCredentialResponse struct {
	Result *CredentialRevocation `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  *Error                `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeCredentialResponse) Descriptor deprecated added in v2.5.0

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

Deprecated: Use RevokeCredentialResponse.ProtoReflect.Descriptor instead.

func (*RevokeCredentialResponse) GetError added in v2.5.0

func (x *RevokeCredentialResponse) GetError() *Error

func (*RevokeCredentialResponse) GetResult added in v2.5.0

func (*RevokeCredentialResponse) ProtoMessage added in v2.5.0

func (*RevokeCredentialResponse) ProtoMessage()

func (*RevokeCredentialResponse) ProtoReflect added in v2.5.0

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

func (*RevokeCredentialResponse) Reset added in v2.5.0

func (x *RevokeCredentialResponse) Reset()

func (*RevokeCredentialResponse) String added in v2.5.0

func (x *RevokeCredentialResponse) String() string

type Schema added in v2.5.0

type Schema struct {
	Cid        string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	CidJsonLd  string `protobuf:"bytes,2,opt,name=cid_json_ld,json=cidJsonLd,proto3" json:"cid_json_ld,omitempty"`
	SchemaType string `protobuf:"bytes,3,opt,name=schema_type,json=schemaType,proto3" json:"schema_type,omitempty"`
	Json       string `protobuf:"bytes,4,opt,name=json,proto3" json:"json,omitempty"`
	// contains filtered or unexported fields
}

func (*Schema) Descriptor deprecated added in v2.5.0

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

Deprecated: Use Schema.ProtoReflect.Descriptor instead.

func (*Schema) GetCid added in v2.8.0

func (x *Schema) GetCid() string

func (*Schema) GetCidJsonLd added in v2.8.0

func (x *Schema) GetCidJsonLd() string

func (*Schema) GetJson added in v2.8.0

func (x *Schema) GetJson() string

func (*Schema) GetSchemaType added in v2.8.0

func (x *Schema) GetSchemaType() string

func (*Schema) ProtoMessage added in v2.5.0

func (*Schema) ProtoMessage()

func (*Schema) ProtoReflect added in v2.5.0

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

func (*Schema) Reset added in v2.5.0

func (x *Schema) Reset()

func (*Schema) String added in v2.5.0

func (x *Schema) String() string

type SendRecordsRequest

type SendRecordsRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Records    []*Record   `protobuf:"bytes,2,rep,name=records,proto3" json:"records,omitempty"`
	// contains filtered or unexported fields
}

func (*SendRecordsRequest) Descriptor deprecated

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

Deprecated: Use SendRecordsRequest.ProtoReflect.Descriptor instead.

func (*SendRecordsRequest) GetConfigData

func (x *SendRecordsRequest) GetConfigData() *ConfigData

func (*SendRecordsRequest) GetRecords

func (x *SendRecordsRequest) GetRecords() []*Record

func (*SendRecordsRequest) ProtoMessage

func (*SendRecordsRequest) ProtoMessage()

func (*SendRecordsRequest) ProtoReflect

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

func (*SendRecordsRequest) Reset

func (x *SendRecordsRequest) Reset()

func (*SendRecordsRequest) String

func (x *SendRecordsRequest) String() string

type SendRecordsResponse

type SendRecordsResponse struct {
	Records []*RecordReceipt `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
	Error   *Error           `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SendRecordsResponse) Descriptor deprecated

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

Deprecated: Use SendRecordsResponse.ProtoReflect.Descriptor instead.

func (*SendRecordsResponse) GetError

func (x *SendRecordsResponse) GetError() *Error

func (*SendRecordsResponse) GetRecords

func (x *SendRecordsResponse) GetRecords() []*RecordReceipt

func (*SendRecordsResponse) ProtoMessage

func (*SendRecordsResponse) ProtoMessage()

func (*SendRecordsResponse) ProtoReflect

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

func (*SendRecordsResponse) Reset

func (x *SendRecordsResponse) Reset()

func (*SendRecordsResponse) String

func (x *SendRecordsResponse) String() string

type SetProofRequest added in v2.1.0

type SetProofRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	Proof      *Proof      `protobuf:"bytes,3,opt,name=proof,proto3" json:"proof,omitempty"`
	// contains filtered or unexported fields
}

func (*SetProofRequest) Descriptor deprecated added in v2.1.0

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

Deprecated: Use SetProofRequest.ProtoReflect.Descriptor instead.

func (*SetProofRequest) GetConfigData added in v2.1.0

func (x *SetProofRequest) GetConfigData() *ConfigData

func (*SetProofRequest) GetProof added in v2.1.0

func (x *SetProofRequest) GetProof() *Proof

func (*SetProofRequest) GetRecord added in v2.1.0

func (x *SetProofRequest) GetRecord() *Record

func (*SetProofRequest) ProtoMessage added in v2.1.0

func (*SetProofRequest) ProtoMessage()

func (*SetProofRequest) ProtoReflect added in v2.1.0

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

func (*SetProofRequest) Reset added in v2.1.0

func (x *SetProofRequest) Reset()

func (*SetProofRequest) String added in v2.1.0

func (x *SetProofRequest) String() string

type SetProofResponse added in v2.1.0

type SetProofResponse struct {
	Error  *Error  `protobuf:"bytes,1,opt,name=error,proto3,oneof" json:"error,omitempty"`
	Record *Record `protobuf:"bytes,2,opt,name=record,proto3,oneof" json:"record,omitempty"`
	// contains filtered or unexported fields
}

func (*SetProofResponse) Descriptor deprecated added in v2.1.0

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

Deprecated: Use SetProofResponse.ProtoReflect.Descriptor instead.

func (*SetProofResponse) GetError added in v2.1.0

func (x *SetProofResponse) GetError() *Error

func (*SetProofResponse) GetRecord added in v2.1.0

func (x *SetProofResponse) GetRecord() *Record

func (*SetProofResponse) ProtoMessage added in v2.1.0

func (*SetProofResponse) ProtoMessage()

func (*SetProofResponse) ProtoReflect added in v2.1.0

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

func (*SetProofResponse) Reset added in v2.1.0

func (x *SetProofResponse) Reset()

func (*SetProofResponse) String added in v2.1.0

func (x *SetProofResponse) String() string

type SetupSecretAccessControlRequest added in v2.8.0

type SetupSecretAccessControlRequest struct {
	ConfigData         *ConfigData         `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Secret             string              `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
	Email              string              `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	ManagedKey         *ManagedKey         `protobuf:"bytes,4,opt,name=managed_key,json=managedKey,proto3,oneof" json:"managed_key,omitempty"`
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,5,opt,name=managed_certificate,json=managedCertificate,proto3,oneof" json:"managed_certificate,omitempty"`
	// contains filtered or unexported fields
}

func (*SetupSecretAccessControlRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SetupSecretAccessControlRequest.ProtoReflect.Descriptor instead.

func (*SetupSecretAccessControlRequest) GetConfigData added in v2.8.0

func (x *SetupSecretAccessControlRequest) GetConfigData() *ConfigData

func (*SetupSecretAccessControlRequest) GetEmail added in v2.8.0

func (*SetupSecretAccessControlRequest) GetManagedCertificate added in v2.8.0

func (x *SetupSecretAccessControlRequest) GetManagedCertificate() *ManagedCertificate

func (*SetupSecretAccessControlRequest) GetManagedKey added in v2.8.0

func (x *SetupSecretAccessControlRequest) GetManagedKey() *ManagedKey

func (*SetupSecretAccessControlRequest) GetSecret added in v2.8.0

func (x *SetupSecretAccessControlRequest) GetSecret() string

func (*SetupSecretAccessControlRequest) ProtoMessage added in v2.8.0

func (*SetupSecretAccessControlRequest) ProtoMessage()

func (*SetupSecretAccessControlRequest) ProtoReflect added in v2.8.0

func (*SetupSecretAccessControlRequest) Reset added in v2.8.0

func (*SetupSecretAccessControlRequest) String added in v2.8.0

type SetupSecretAccessControlResponse added in v2.8.0

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

func (*SetupSecretAccessControlResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SetupSecretAccessControlResponse.ProtoReflect.Descriptor instead.

func (*SetupSecretAccessControlResponse) GetError added in v2.8.0

func (x *SetupSecretAccessControlResponse) GetError() *Error

func (*SetupSecretAccessControlResponse) ProtoMessage added in v2.8.0

func (*SetupSecretAccessControlResponse) ProtoMessage()

func (*SetupSecretAccessControlResponse) ProtoReflect added in v2.8.0

func (*SetupSecretAccessControlResponse) Reset added in v2.8.0

func (*SetupSecretAccessControlResponse) String added in v2.8.0

type SetupTotpAccessControlRequest added in v2.8.0

type SetupTotpAccessControlRequest struct {
	ConfigData         *ConfigData         `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	ManagedKey         *ManagedKey         `protobuf:"bytes,2,opt,name=managed_key,json=managedKey,proto3,oneof" json:"managed_key,omitempty"`
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,3,opt,name=managed_certificate,json=managedCertificate,proto3,oneof" json:"managed_certificate,omitempty"`
	// contains filtered or unexported fields
}

func (*SetupTotpAccessControlRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SetupTotpAccessControlRequest.ProtoReflect.Descriptor instead.

func (*SetupTotpAccessControlRequest) GetConfigData added in v2.8.0

func (x *SetupTotpAccessControlRequest) GetConfigData() *ConfigData

func (*SetupTotpAccessControlRequest) GetManagedCertificate added in v2.8.0

func (x *SetupTotpAccessControlRequest) GetManagedCertificate() *ManagedCertificate

func (*SetupTotpAccessControlRequest) GetManagedKey added in v2.8.0

func (x *SetupTotpAccessControlRequest) GetManagedKey() *ManagedKey

func (*SetupTotpAccessControlRequest) ProtoMessage added in v2.8.0

func (*SetupTotpAccessControlRequest) ProtoMessage()

func (*SetupTotpAccessControlRequest) ProtoReflect added in v2.8.0

func (*SetupTotpAccessControlRequest) Reset added in v2.8.0

func (x *SetupTotpAccessControlRequest) Reset()

func (*SetupTotpAccessControlRequest) String added in v2.8.0

type SetupTotpAccessControlResponse added in v2.8.0

type SetupTotpAccessControlResponse struct {
	Secret        string   `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
	SecretQr      string   `protobuf:"bytes,2,opt,name=secret_qr,json=secretQr,proto3" json:"secret_qr,omitempty"`
	RecoveryCodes []string `protobuf:"bytes,3,rep,name=recovery_codes,json=recoveryCodes,proto3" json:"recovery_codes,omitempty"`
	Error         *Error   `protobuf:"bytes,4,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SetupTotpAccessControlResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SetupTotpAccessControlResponse.ProtoReflect.Descriptor instead.

func (*SetupTotpAccessControlResponse) GetError added in v2.8.0

func (x *SetupTotpAccessControlResponse) GetError() *Error

func (*SetupTotpAccessControlResponse) GetRecoveryCodes added in v2.8.0

func (x *SetupTotpAccessControlResponse) GetRecoveryCodes() []string

func (*SetupTotpAccessControlResponse) GetSecret added in v2.8.0

func (x *SetupTotpAccessControlResponse) GetSecret() string

func (*SetupTotpAccessControlResponse) GetSecretQr added in v2.8.0

func (x *SetupTotpAccessControlResponse) GetSecretQr() string

func (*SetupTotpAccessControlResponse) ProtoMessage added in v2.8.0

func (*SetupTotpAccessControlResponse) ProtoMessage()

func (*SetupTotpAccessControlResponse) ProtoReflect added in v2.8.0

func (*SetupTotpAccessControlResponse) Reset added in v2.8.0

func (x *SetupTotpAccessControlResponse) Reset()

func (*SetupTotpAccessControlResponse) String added in v2.8.0

type SignRequest added in v2.4.0

type SignRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	Signer     *Signer     `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

func (*SignRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use SignRequest.ProtoReflect.Descriptor instead.

func (*SignRequest) GetConfigData added in v2.4.0

func (x *SignRequest) GetConfigData() *ConfigData

func (*SignRequest) GetRecord added in v2.4.0

func (x *SignRequest) GetRecord() *Record

func (*SignRequest) GetSigner added in v2.4.0

func (x *SignRequest) GetSigner() *Signer

func (*SignRequest) ProtoMessage added in v2.4.0

func (*SignRequest) ProtoMessage()

func (*SignRequest) ProtoReflect added in v2.4.0

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

func (*SignRequest) Reset added in v2.4.0

func (x *SignRequest) Reset()

func (*SignRequest) String added in v2.4.0

func (x *SignRequest) String() string

type SignResponse added in v2.4.0

type SignResponse struct {
	Signature *Signature `protobuf:"bytes,1,opt,name=signature,proto3" json:"signature,omitempty"`
	Error     *Error     `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SignResponse) Descriptor deprecated added in v2.4.0

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

Deprecated: Use SignResponse.ProtoReflect.Descriptor instead.

func (*SignResponse) GetError added in v2.4.0

func (x *SignResponse) GetError() *Error

func (*SignResponse) GetSignature added in v2.4.0

func (x *SignResponse) GetSignature() *Signature

func (*SignResponse) ProtoMessage added in v2.4.0

func (*SignResponse) ProtoMessage()

func (*SignResponse) ProtoReflect added in v2.4.0

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

func (*SignResponse) Reset added in v2.4.0

func (x *SignResponse) Reset()

func (*SignResponse) String added in v2.4.0

func (x *SignResponse) String() string

type Signature

type Signature struct {
	Signature   string  `protobuf:"bytes,1,opt,name=signature,proto3" json:"signature,omitempty"`
	Alg         string  `protobuf:"bytes,2,opt,name=alg,proto3" json:"alg,omitempty"`
	Kid         string  `protobuf:"bytes,3,opt,name=kid,proto3" json:"kid,omitempty"`
	MessageHash string  `protobuf:"bytes,4,opt,name=message_hash,json=messageHash,proto3" json:"message_hash,omitempty"`
	Subject     *string `protobuf:"bytes,5,opt,name=subject,proto3,oneof" json:"subject,omitempty"`
	HashAlg     *string `protobuf:"bytes,6,opt,name=hash_alg,json=hashAlg,proto3,oneof" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Signature) Descriptor deprecated

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

Deprecated: Use Signature.ProtoReflect.Descriptor instead.

func (*Signature) GetAlg added in v2.7.0

func (x *Signature) GetAlg() string

func (*Signature) GetHashAlg added in v2.7.0

func (x *Signature) GetHashAlg() string

func (*Signature) GetKid added in v2.7.0

func (x *Signature) GetKid() string

func (*Signature) GetMessageHash added in v2.4.0

func (x *Signature) GetMessageHash() string

func (*Signature) GetSignature

func (x *Signature) GetSignature() string

func (*Signature) GetSubject added in v2.7.0

func (x *Signature) GetSubject() string

func (*Signature) ProtoMessage

func (*Signature) ProtoMessage()

func (*Signature) ProtoReflect

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

func (*Signature) Reset

func (x *Signature) Reset()

func (*Signature) String

func (x *Signature) String() string

type SignatureHeaderJWS added in v2.7.0

type SignatureHeaderJWS struct {
	Alg     string  `protobuf:"bytes,1,opt,name=alg,proto3" json:"alg,omitempty"`
	Kid     string  `protobuf:"bytes,2,opt,name=kid,proto3" json:"kid,omitempty"`
	Subject *string `protobuf:"bytes,3,opt,name=subject,proto3,oneof" json:"subject,omitempty"`
	HashAlg *string `protobuf:"bytes,4,opt,name=hash_alg,json=hashAlg,proto3,oneof" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*SignatureHeaderJWS) Descriptor deprecated added in v2.7.0

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

Deprecated: Use SignatureHeaderJWS.ProtoReflect.Descriptor instead.

func (*SignatureHeaderJWS) GetAlg added in v2.7.0

func (x *SignatureHeaderJWS) GetAlg() string

func (*SignatureHeaderJWS) GetHashAlg added in v2.7.0

func (x *SignatureHeaderJWS) GetHashAlg() string

func (*SignatureHeaderJWS) GetKid added in v2.7.0

func (x *SignatureHeaderJWS) GetKid() string

func (*SignatureHeaderJWS) GetSubject added in v2.7.0

func (x *SignatureHeaderJWS) GetSubject() string

func (*SignatureHeaderJWS) ProtoMessage added in v2.7.0

func (*SignatureHeaderJWS) ProtoMessage()

func (*SignatureHeaderJWS) ProtoReflect added in v2.7.0

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

func (*SignatureHeaderJWS) Reset added in v2.7.0

func (x *SignatureHeaderJWS) Reset()

func (*SignatureHeaderJWS) String added in v2.7.0

func (x *SignatureHeaderJWS) String() string

type SignatureJWS added in v2.7.0

type SignatureJWS struct {
	Signature   string              `protobuf:"bytes,1,opt,name=signature,proto3" json:"signature,omitempty"`
	Protected   string              `protobuf:"bytes,2,opt,name=protected,proto3" json:"protected,omitempty"`
	Header      *SignatureHeaderJWS `protobuf:"bytes,3,opt,name=header,proto3" json:"header,omitempty"`
	MessageHash string              `protobuf:"bytes,4,opt,name=message_hash,json=messageHash,proto3" json:"message_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*SignatureJWS) Descriptor deprecated added in v2.7.0

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

Deprecated: Use SignatureJWS.ProtoReflect.Descriptor instead.

func (*SignatureJWS) GetHeader added in v2.7.0

func (x *SignatureJWS) GetHeader() *SignatureHeaderJWS

func (*SignatureJWS) GetMessageHash added in v2.7.0

func (x *SignatureJWS) GetMessageHash() string

func (*SignatureJWS) GetProtected added in v2.7.0

func (x *SignatureJWS) GetProtected() string

func (*SignatureJWS) GetSignature added in v2.7.0

func (x *SignatureJWS) GetSignature() string

func (*SignatureJWS) ProtoMessage added in v2.7.0

func (*SignatureJWS) ProtoMessage()

func (*SignatureJWS) ProtoReflect added in v2.7.0

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

func (*SignatureJWS) Reset added in v2.7.0

func (x *SignatureJWS) Reset()

func (*SignatureJWS) String added in v2.7.0

func (x *SignatureJWS) String() string

type Signer

type Signer struct {
	LocalKey           *LocalKey           `protobuf:"bytes,1,opt,name=local_key,json=localKey,proto3,oneof" json:"local_key,omitempty"`
	ManagedKey         *ManagedKey         `protobuf:"bytes,2,opt,name=managed_key,json=managedKey,proto3,oneof" json:"managed_key,omitempty"`
	LocalCertificate   *LocalCertificate   `protobuf:"bytes,3,opt,name=local_certificate,json=localCertificate,proto3,oneof" json:"local_certificate,omitempty"`
	ManagedCertificate *ManagedCertificate `protobuf:"bytes,4,opt,name=managed_certificate,json=managedCertificate,proto3,oneof" json:"managed_certificate,omitempty"`
	HashAlg            *HashAlg            `protobuf:"varint,5,opt,name=hash_alg,json=hashAlg,proto3,enum=bloock.HashAlg,oneof" json:"hash_alg,omitempty"`
	AccessControl      *AccessControl      `protobuf:"bytes,6,opt,name=access_control,json=accessControl,proto3,oneof" json:"access_control,omitempty"`
	// contains filtered or unexported fields
}

func (*Signer) Descriptor deprecated

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

Deprecated: Use Signer.ProtoReflect.Descriptor instead.

func (*Signer) GetAccessControl added in v2.8.0

func (x *Signer) GetAccessControl() *AccessControl

func (*Signer) GetHashAlg added in v2.7.0

func (x *Signer) GetHashAlg() HashAlg

func (*Signer) GetLocalCertificate added in v2.7.0

func (x *Signer) GetLocalCertificate() *LocalCertificate

func (*Signer) GetLocalKey added in v2.5.0

func (x *Signer) GetLocalKey() *LocalKey

func (*Signer) GetManagedCertificate added in v2.7.0

func (x *Signer) GetManagedCertificate() *ManagedCertificate

func (*Signer) GetManagedKey added in v2.5.0

func (x *Signer) GetManagedKey() *ManagedKey

func (*Signer) ProtoMessage

func (*Signer) ProtoMessage()

func (*Signer) ProtoReflect

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

func (*Signer) Reset

func (x *Signer) Reset()

func (*Signer) String

func (x *Signer) String() string

type StringAttribute added in v2.5.7

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

func (*StringAttribute) Descriptor deprecated added in v2.5.7

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

Deprecated: Use StringAttribute.ProtoReflect.Descriptor instead.

func (*StringAttribute) GetId added in v2.5.7

func (x *StringAttribute) GetId() string

func (*StringAttribute) GetValue added in v2.5.7

func (x *StringAttribute) GetValue() string

func (*StringAttribute) ProtoMessage added in v2.5.7

func (*StringAttribute) ProtoMessage()

func (*StringAttribute) ProtoReflect added in v2.5.7

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

func (*StringAttribute) Reset added in v2.5.7

func (x *StringAttribute) Reset()

func (*StringAttribute) String added in v2.5.7

func (x *StringAttribute) String() string

type StringAttributeDefinition added in v2.5.7

type StringAttributeDefinition struct {
	DisplayName string `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool   `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	// contains filtered or unexported fields
}

func (*StringAttributeDefinition) Descriptor deprecated added in v2.5.7

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

Deprecated: Use StringAttributeDefinition.ProtoReflect.Descriptor instead.

func (*StringAttributeDefinition) GetDescription added in v2.5.7

func (x *StringAttributeDefinition) GetDescription() string

func (*StringAttributeDefinition) GetDisplayName added in v2.5.7

func (x *StringAttributeDefinition) GetDisplayName() string

func (*StringAttributeDefinition) GetId added in v2.5.7

func (x *StringAttributeDefinition) GetId() string

func (*StringAttributeDefinition) GetRequired added in v2.8.0

func (x *StringAttributeDefinition) GetRequired() bool

func (*StringAttributeDefinition) ProtoMessage added in v2.5.7

func (*StringAttributeDefinition) ProtoMessage()

func (*StringAttributeDefinition) ProtoReflect added in v2.5.7

func (*StringAttributeDefinition) Reset added in v2.5.7

func (x *StringAttributeDefinition) Reset()

func (*StringAttributeDefinition) String added in v2.5.7

func (x *StringAttributeDefinition) String() string

type StringEnumAttributeDefinition added in v2.8.0

type StringEnumAttributeDefinition struct {
	DisplayName string   `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Id          string   `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Description string   `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Required    bool     `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
	Enum        []string `protobuf:"bytes,5,rep,name=enum,proto3" json:"enum,omitempty"`
	// contains filtered or unexported fields
}

func (*StringEnumAttributeDefinition) Descriptor deprecated added in v2.8.0

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

Deprecated: Use StringEnumAttributeDefinition.ProtoReflect.Descriptor instead.

func (*StringEnumAttributeDefinition) GetDescription added in v2.8.0

func (x *StringEnumAttributeDefinition) GetDescription() string

func (*StringEnumAttributeDefinition) GetDisplayName added in v2.8.0

func (x *StringEnumAttributeDefinition) GetDisplayName() string

func (*StringEnumAttributeDefinition) GetEnum added in v2.8.0

func (x *StringEnumAttributeDefinition) GetEnum() []string

func (*StringEnumAttributeDefinition) GetId added in v2.8.0

func (*StringEnumAttributeDefinition) GetRequired added in v2.8.0

func (x *StringEnumAttributeDefinition) GetRequired() bool

func (*StringEnumAttributeDefinition) ProtoMessage added in v2.8.0

func (*StringEnumAttributeDefinition) ProtoMessage()

func (*StringEnumAttributeDefinition) ProtoReflect added in v2.8.0

func (*StringEnumAttributeDefinition) Reset added in v2.8.0

func (x *StringEnumAttributeDefinition) Reset()

func (*StringEnumAttributeDefinition) String added in v2.8.0

type UnimplementedAuthenticityServiceServer added in v2.4.0

type UnimplementedAuthenticityServiceServer struct {
}

UnimplementedAuthenticityServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedAuthenticityServiceServer) GetSignatures added in v2.4.0

func (UnimplementedAuthenticityServiceServer) Sign added in v2.4.0

func (UnimplementedAuthenticityServiceServer) Verify added in v2.4.0

type UnimplementedAvailabilityServiceServer added in v2.4.0

type UnimplementedAvailabilityServiceServer struct {
}

UnimplementedAvailabilityServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedAvailabilityServiceServer) Publish added in v2.4.0

func (UnimplementedAvailabilityServiceServer) Retrieve added in v2.4.0

type UnimplementedEncryptionServiceServer added in v2.4.0

type UnimplementedEncryptionServiceServer struct {
}

UnimplementedEncryptionServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedEncryptionServiceServer) Decrypt added in v2.4.0

func (UnimplementedEncryptionServiceServer) Encrypt added in v2.4.0

func (UnimplementedEncryptionServiceServer) GetEncryptionAlg added in v2.4.0

type UnimplementedIdentityCoreServiceServer added in v2.8.0

type UnimplementedIdentityCoreServiceServer struct {
}

UnimplementedIdentityCoreServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedIdentityCoreServiceServer) CreateCoreCredential added in v2.8.0

type UnimplementedIdentityServiceServer added in v2.5.0

type UnimplementedIdentityServiceServer struct {
}

UnimplementedIdentityServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedIdentityServiceServer) BuildSchema added in v2.5.0

func (UnimplementedIdentityServiceServer) CreateCredential added in v2.5.0

func (UnimplementedIdentityServiceServer) CreateHolder added in v2.8.0

func (UnimplementedIdentityServiceServer) CreateIssuer added in v2.8.0

func (UnimplementedIdentityServiceServer) CreateVerification added in v2.8.0

func (UnimplementedIdentityServiceServer) CredentialFromJson added in v2.5.0

func (UnimplementedIdentityServiceServer) CredentialToJson added in v2.5.0

func (UnimplementedIdentityServiceServer) ForcePublishIssuerState added in v2.8.0

func (UnimplementedIdentityServiceServer) GetCredential added in v2.8.0

func (UnimplementedIdentityServiceServer) GetCredentialOffer added in v2.8.0

func (UnimplementedIdentityServiceServer) GetCredentialProof added in v2.8.0

func (UnimplementedIdentityServiceServer) GetSchema added in v2.5.0

func (UnimplementedIdentityServiceServer) GetVerificationStatus added in v2.8.0

func (UnimplementedIdentityServiceServer) ImportIssuer added in v2.8.0

func (UnimplementedIdentityServiceServer) RevokeCredential added in v2.5.0

func (UnimplementedIdentityServiceServer) WaitVerification added in v2.8.0

type UnimplementedIntegrityServiceServer added in v2.4.0

type UnimplementedIntegrityServiceServer struct {
}

UnimplementedIntegrityServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedIntegrityServiceServer) GetAnchor added in v2.4.0

func (UnimplementedIntegrityServiceServer) GetProof added in v2.4.0

func (UnimplementedIntegrityServiceServer) SendRecords added in v2.4.0

func (UnimplementedIntegrityServiceServer) ValidateRoot added in v2.4.0

func (UnimplementedIntegrityServiceServer) VerifyProof added in v2.4.0

func (UnimplementedIntegrityServiceServer) VerifyRecords added in v2.4.0

func (UnimplementedIntegrityServiceServer) WaitAnchor added in v2.4.0

type UnimplementedKeyServiceServer added in v2.5.0

type UnimplementedKeyServiceServer struct {
}

UnimplementedKeyServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedKeyServiceServer) GenerateLocalCertificate added in v2.7.0

func (UnimplementedKeyServiceServer) GenerateLocalKey added in v2.5.0

func (UnimplementedKeyServiceServer) GenerateManagedCertificate added in v2.7.0

func (UnimplementedKeyServiceServer) GenerateManagedKey added in v2.5.0

func (UnimplementedKeyServiceServer) ImportManagedCertificate added in v2.7.0

func (UnimplementedKeyServiceServer) LoadLocalCertificate added in v2.7.0

func (UnimplementedKeyServiceServer) LoadLocalKey added in v2.5.0

func (UnimplementedKeyServiceServer) LoadManagedCertificate added in v2.7.0

func (UnimplementedKeyServiceServer) LoadManagedKey added in v2.5.0

func (UnimplementedKeyServiceServer) RecoverTotpAccessControl added in v2.8.0

func (UnimplementedKeyServiceServer) SetupSecretAccessControl added in v2.8.0

func (UnimplementedKeyServiceServer) SetupTotpAccessControl added in v2.8.0

type UnimplementedRecordServiceServer

type UnimplementedRecordServiceServer struct {
}

UnimplementedRecordServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedRecordServiceServer) BuildRecordFromBytes

func (UnimplementedRecordServiceServer) BuildRecordFromFile

func (UnimplementedRecordServiceServer) BuildRecordFromHex

func (UnimplementedRecordServiceServer) BuildRecordFromJson

func (UnimplementedRecordServiceServer) BuildRecordFromLoader

func (UnimplementedRecordServiceServer) BuildRecordFromRecord

func (UnimplementedRecordServiceServer) BuildRecordFromString

func (UnimplementedRecordServiceServer) GetDetails added in v2.7.0

func (UnimplementedRecordServiceServer) GetHash

func (UnimplementedRecordServiceServer) GetPayload added in v2.7.0

func (UnimplementedRecordServiceServer) SetProof added in v2.4.0

type UnimplementedWebhookServiceServer added in v2.2.1

type UnimplementedWebhookServiceServer struct {
}

UnimplementedWebhookServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedWebhookServiceServer) VerifyWebhookSignature added in v2.2.1

type UnsafeAuthenticityServiceServer added in v2.4.0

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

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

type UnsafeAvailabilityServiceServer added in v2.4.0

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

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

type UnsafeEncryptionServiceServer added in v2.4.0

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

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

type UnsafeIdentityCoreServiceServer added in v2.8.0

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

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

type UnsafeIdentityServiceServer added in v2.5.0

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

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

type UnsafeIntegrityServiceServer added in v2.4.0

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

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

type UnsafeKeyServiceServer added in v2.5.0

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

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

type UnsafeRecordServiceServer

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

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

type UnsafeWebhookServiceServer added in v2.2.1

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

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

type ValidateRootRequest

type ValidateRootRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Root       string      `protobuf:"bytes,2,opt,name=root,proto3" json:"root,omitempty"`
	Network    Network     `protobuf:"varint,3,opt,name=network,proto3,enum=bloock.Network" json:"network,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateRootRequest) Descriptor deprecated

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

Deprecated: Use ValidateRootRequest.ProtoReflect.Descriptor instead.

func (*ValidateRootRequest) GetConfigData

func (x *ValidateRootRequest) GetConfigData() *ConfigData

func (*ValidateRootRequest) GetNetwork

func (x *ValidateRootRequest) GetNetwork() Network

func (*ValidateRootRequest) GetRoot

func (x *ValidateRootRequest) GetRoot() string

func (*ValidateRootRequest) ProtoMessage

func (*ValidateRootRequest) ProtoMessage()

func (*ValidateRootRequest) ProtoReflect

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

func (*ValidateRootRequest) Reset

func (x *ValidateRootRequest) Reset()

func (*ValidateRootRequest) String

func (x *ValidateRootRequest) String() string

type ValidateRootResponse

type ValidateRootResponse struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // TODO Should be u128
	Error     *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateRootResponse) Descriptor deprecated

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

Deprecated: Use ValidateRootResponse.ProtoReflect.Descriptor instead.

func (*ValidateRootResponse) GetError

func (x *ValidateRootResponse) GetError() *Error

func (*ValidateRootResponse) GetTimestamp

func (x *ValidateRootResponse) GetTimestamp() uint64

func (*ValidateRootResponse) ProtoMessage

func (*ValidateRootResponse) ProtoMessage()

func (*ValidateRootResponse) ProtoReflect

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

func (*ValidateRootResponse) Reset

func (x *ValidateRootResponse) Reset()

func (*ValidateRootResponse) String

func (x *ValidateRootResponse) String() string

type VerificationReceipt added in v2.7.0

type VerificationReceipt struct {
	VerificationRequest string `protobuf:"bytes,1,opt,name=verification_request,json=verificationRequest,proto3" json:"verification_request,omitempty"`
	SessionId           int64  `protobuf:"varint,2,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	// contains filtered or unexported fields
}

func (*VerificationReceipt) Descriptor deprecated added in v2.7.0

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

Deprecated: Use VerificationReceipt.ProtoReflect.Descriptor instead.

func (*VerificationReceipt) GetSessionId added in v2.7.0

func (x *VerificationReceipt) GetSessionId() int64

func (*VerificationReceipt) GetVerificationRequest added in v2.7.0

func (x *VerificationReceipt) GetVerificationRequest() string

func (*VerificationReceipt) ProtoMessage added in v2.7.0

func (*VerificationReceipt) ProtoMessage()

func (*VerificationReceipt) ProtoReflect added in v2.7.0

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

func (*VerificationReceipt) Reset added in v2.7.0

func (x *VerificationReceipt) Reset()

func (*VerificationReceipt) String added in v2.7.0

func (x *VerificationReceipt) String() string

type VerifyProofRequest

type VerifyProofRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Proof      *Proof      `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyProofRequest) Descriptor deprecated

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

Deprecated: Use VerifyProofRequest.ProtoReflect.Descriptor instead.

func (*VerifyProofRequest) GetConfigData

func (x *VerifyProofRequest) GetConfigData() *ConfigData

func (*VerifyProofRequest) GetProof

func (x *VerifyProofRequest) GetProof() *Proof

func (*VerifyProofRequest) ProtoMessage

func (*VerifyProofRequest) ProtoMessage()

func (*VerifyProofRequest) ProtoReflect

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

func (*VerifyProofRequest) Reset

func (x *VerifyProofRequest) Reset()

func (*VerifyProofRequest) String

func (x *VerifyProofRequest) String() string

type VerifyProofResponse

type VerifyProofResponse struct {
	Record *string `protobuf:"bytes,1,opt,name=record,proto3,oneof" json:"record,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyProofResponse) Descriptor deprecated

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

Deprecated: Use VerifyProofResponse.ProtoReflect.Descriptor instead.

func (*VerifyProofResponse) GetError

func (x *VerifyProofResponse) GetError() *Error

func (*VerifyProofResponse) GetRecord

func (x *VerifyProofResponse) GetRecord() string

func (*VerifyProofResponse) ProtoMessage

func (*VerifyProofResponse) ProtoMessage()

func (*VerifyProofResponse) ProtoReflect

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

func (*VerifyProofResponse) Reset

func (x *VerifyProofResponse) Reset()

func (*VerifyProofResponse) String

func (x *VerifyProofResponse) String() string

type VerifyRecordsRequest

type VerifyRecordsRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Records    []*Record   `protobuf:"bytes,2,rep,name=records,proto3" json:"records,omitempty"`
	Network    *Network    `protobuf:"varint,3,opt,name=network,proto3,enum=bloock.Network,oneof" json:"network,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyRecordsRequest) Descriptor deprecated

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

Deprecated: Use VerifyRecordsRequest.ProtoReflect.Descriptor instead.

func (*VerifyRecordsRequest) GetConfigData

func (x *VerifyRecordsRequest) GetConfigData() *ConfigData

func (*VerifyRecordsRequest) GetNetwork

func (x *VerifyRecordsRequest) GetNetwork() Network

func (*VerifyRecordsRequest) GetRecords

func (x *VerifyRecordsRequest) GetRecords() []*Record

func (*VerifyRecordsRequest) ProtoMessage

func (*VerifyRecordsRequest) ProtoMessage()

func (*VerifyRecordsRequest) ProtoReflect

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

func (*VerifyRecordsRequest) Reset

func (x *VerifyRecordsRequest) Reset()

func (*VerifyRecordsRequest) String

func (x *VerifyRecordsRequest) String() string

type VerifyRecordsResponse

type VerifyRecordsResponse struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // TODO Should be u128
	Error     *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyRecordsResponse) Descriptor deprecated

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

Deprecated: Use VerifyRecordsResponse.ProtoReflect.Descriptor instead.

func (*VerifyRecordsResponse) GetError

func (x *VerifyRecordsResponse) GetError() *Error

func (*VerifyRecordsResponse) GetTimestamp

func (x *VerifyRecordsResponse) GetTimestamp() uint64

func (*VerifyRecordsResponse) ProtoMessage

func (*VerifyRecordsResponse) ProtoMessage()

func (*VerifyRecordsResponse) ProtoReflect

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

func (*VerifyRecordsResponse) Reset

func (x *VerifyRecordsResponse) Reset()

func (*VerifyRecordsResponse) String

func (x *VerifyRecordsResponse) String() string

type VerifyRequest added in v2.4.0

type VerifyRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Record     *Record     `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyRequest) Descriptor deprecated added in v2.4.0

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

Deprecated: Use VerifyRequest.ProtoReflect.Descriptor instead.

func (*VerifyRequest) GetConfigData added in v2.4.0

func (x *VerifyRequest) GetConfigData() *ConfigData

func (*VerifyRequest) GetRecord added in v2.4.0

func (x *VerifyRequest) GetRecord() *Record

func (*VerifyRequest) ProtoMessage added in v2.4.0

func (*VerifyRequest) ProtoMessage()

func (*VerifyRequest) ProtoReflect added in v2.4.0

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

func (*VerifyRequest) Reset added in v2.4.0

func (x *VerifyRequest) Reset()

func (*VerifyRequest) String added in v2.4.0

func (x *VerifyRequest) String() string

type VerifyResponse added in v2.4.0

type VerifyResponse struct {
	Valid bool   `protobuf:"varint,1,opt,name=valid,proto3" json:"valid,omitempty"`
	Error *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyResponse) Descriptor deprecated added in v2.4.0

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

Deprecated: Use VerifyResponse.ProtoReflect.Descriptor instead.

func (*VerifyResponse) GetError added in v2.4.0

func (x *VerifyResponse) GetError() *Error

func (*VerifyResponse) GetValid added in v2.4.0

func (x *VerifyResponse) GetValid() bool

func (*VerifyResponse) ProtoMessage added in v2.4.0

func (*VerifyResponse) ProtoMessage()

func (*VerifyResponse) ProtoReflect added in v2.4.0

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

func (*VerifyResponse) Reset added in v2.4.0

func (x *VerifyResponse) Reset()

func (*VerifyResponse) String added in v2.4.0

func (x *VerifyResponse) String() string

type VerifyWebhookSignatureRequest added in v2.2.1

type VerifyWebhookSignatureRequest struct {
	ConfigData       *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	Payload          []byte      `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Header           string      `protobuf:"bytes,3,opt,name=header,proto3" json:"header,omitempty"`
	SecretKey        string      `protobuf:"bytes,4,opt,name=secretKey,proto3" json:"secretKey,omitempty"`
	EnforceTolerance bool        `protobuf:"varint,5,opt,name=enforceTolerance,proto3" json:"enforceTolerance,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyWebhookSignatureRequest) Descriptor deprecated added in v2.2.1

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

Deprecated: Use VerifyWebhookSignatureRequest.ProtoReflect.Descriptor instead.

func (*VerifyWebhookSignatureRequest) GetConfigData added in v2.2.1

func (x *VerifyWebhookSignatureRequest) GetConfigData() *ConfigData

func (*VerifyWebhookSignatureRequest) GetEnforceTolerance added in v2.2.1

func (x *VerifyWebhookSignatureRequest) GetEnforceTolerance() bool

func (*VerifyWebhookSignatureRequest) GetHeader added in v2.2.1

func (x *VerifyWebhookSignatureRequest) GetHeader() string

func (*VerifyWebhookSignatureRequest) GetPayload added in v2.2.1

func (x *VerifyWebhookSignatureRequest) GetPayload() []byte

func (*VerifyWebhookSignatureRequest) GetSecretKey added in v2.2.1

func (x *VerifyWebhookSignatureRequest) GetSecretKey() string

func (*VerifyWebhookSignatureRequest) ProtoMessage added in v2.2.1

func (*VerifyWebhookSignatureRequest) ProtoMessage()

func (*VerifyWebhookSignatureRequest) ProtoReflect added in v2.2.1

func (*VerifyWebhookSignatureRequest) Reset added in v2.2.1

func (x *VerifyWebhookSignatureRequest) Reset()

func (*VerifyWebhookSignatureRequest) String added in v2.2.1

type VerifyWebhookSignatureResponse added in v2.2.1

type VerifyWebhookSignatureResponse struct {
	IsValid bool   `protobuf:"varint,1,opt,name=is_valid,json=isValid,proto3" json:"is_valid,omitempty"`
	Error   *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyWebhookSignatureResponse) Descriptor deprecated added in v2.2.1

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

Deprecated: Use VerifyWebhookSignatureResponse.ProtoReflect.Descriptor instead.

func (*VerifyWebhookSignatureResponse) GetError added in v2.2.1

func (x *VerifyWebhookSignatureResponse) GetError() *Error

func (*VerifyWebhookSignatureResponse) GetIsValid added in v2.2.1

func (x *VerifyWebhookSignatureResponse) GetIsValid() bool

func (*VerifyWebhookSignatureResponse) ProtoMessage added in v2.2.1

func (*VerifyWebhookSignatureResponse) ProtoMessage()

func (*VerifyWebhookSignatureResponse) ProtoReflect added in v2.2.1

func (*VerifyWebhookSignatureResponse) Reset added in v2.2.1

func (x *VerifyWebhookSignatureResponse) Reset()

func (*VerifyWebhookSignatureResponse) String added in v2.2.1

type WaitAnchorRequest

type WaitAnchorRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	AnchorId   int64       `protobuf:"varint,2,opt,name=anchor_id,json=anchorId,proto3" json:"anchor_id,omitempty"`
	Timeout    int64       `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*WaitAnchorRequest) Descriptor deprecated

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

Deprecated: Use WaitAnchorRequest.ProtoReflect.Descriptor instead.

func (*WaitAnchorRequest) GetAnchorId

func (x *WaitAnchorRequest) GetAnchorId() int64

func (*WaitAnchorRequest) GetConfigData

func (x *WaitAnchorRequest) GetConfigData() *ConfigData

func (*WaitAnchorRequest) GetTimeout

func (x *WaitAnchorRequest) GetTimeout() int64

func (*WaitAnchorRequest) ProtoMessage

func (*WaitAnchorRequest) ProtoMessage()

func (*WaitAnchorRequest) ProtoReflect

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

func (*WaitAnchorRequest) Reset

func (x *WaitAnchorRequest) Reset()

func (*WaitAnchorRequest) String

func (x *WaitAnchorRequest) String() string

type WaitAnchorResponse

type WaitAnchorResponse struct {
	Anchor *Anchor `protobuf:"bytes,1,opt,name=anchor,proto3,oneof" json:"anchor,omitempty"`
	Error  *Error  `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*WaitAnchorResponse) Descriptor deprecated

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

Deprecated: Use WaitAnchorResponse.ProtoReflect.Descriptor instead.

func (*WaitAnchorResponse) GetAnchor

func (x *WaitAnchorResponse) GetAnchor() *Anchor

func (*WaitAnchorResponse) GetError

func (x *WaitAnchorResponse) GetError() *Error

func (*WaitAnchorResponse) ProtoMessage

func (*WaitAnchorResponse) ProtoMessage()

func (*WaitAnchorResponse) ProtoReflect

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

func (*WaitAnchorResponse) Reset

func (x *WaitAnchorResponse) Reset()

func (*WaitAnchorResponse) String

func (x *WaitAnchorResponse) String() string

type WaitVerificationRequest added in v2.7.0

type WaitVerificationRequest struct {
	ConfigData *ConfigData `protobuf:"bytes,1,opt,name=config_data,json=configData,proto3" json:"config_data,omitempty"`
	SessionId  int64       `protobuf:"varint,2,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	Timeout    int64       `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*WaitVerificationRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use WaitVerificationRequest.ProtoReflect.Descriptor instead.

func (*WaitVerificationRequest) GetConfigData added in v2.7.0

func (x *WaitVerificationRequest) GetConfigData() *ConfigData

func (*WaitVerificationRequest) GetSessionId added in v2.7.0

func (x *WaitVerificationRequest) GetSessionId() int64

func (*WaitVerificationRequest) GetTimeout added in v2.7.0

func (x *WaitVerificationRequest) GetTimeout() int64

func (*WaitVerificationRequest) ProtoMessage added in v2.7.0

func (*WaitVerificationRequest) ProtoMessage()

func (*WaitVerificationRequest) ProtoReflect added in v2.7.0

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

func (*WaitVerificationRequest) Reset added in v2.7.0

func (x *WaitVerificationRequest) Reset()

func (*WaitVerificationRequest) String added in v2.7.0

func (x *WaitVerificationRequest) String() string

type WaitVerificationResponse added in v2.7.0

type WaitVerificationResponse struct {
	Status bool   `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
	Error  *Error `protobuf:"bytes,2,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*WaitVerificationResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use WaitVerificationResponse.ProtoReflect.Descriptor instead.

func (*WaitVerificationResponse) GetError added in v2.7.0

func (x *WaitVerificationResponse) GetError() *Error

func (*WaitVerificationResponse) GetStatus added in v2.7.0

func (x *WaitVerificationResponse) GetStatus() bool

func (*WaitVerificationResponse) ProtoMessage added in v2.7.0

func (*WaitVerificationResponse) ProtoMessage()

func (*WaitVerificationResponse) ProtoReflect added in v2.7.0

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

func (*WaitVerificationResponse) Reset added in v2.7.0

func (x *WaitVerificationResponse) Reset()

func (*WaitVerificationResponse) String added in v2.7.0

func (x *WaitVerificationResponse) String() string

type WebhookServiceClient added in v2.2.1

type WebhookServiceClient interface {
	VerifyWebhookSignature(ctx context.Context, in *VerifyWebhookSignatureRequest, opts ...grpc.CallOption) (*VerifyWebhookSignatureResponse, error)
}

WebhookServiceClient is the client API for WebhookService 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 NewWebhookServiceClient added in v2.2.1

func NewWebhookServiceClient(cc grpc.ClientConnInterface) WebhookServiceClient

type WebhookServiceServer added in v2.2.1

type WebhookServiceServer interface {
	VerifyWebhookSignature(context.Context, *VerifyWebhookSignatureRequest) (*VerifyWebhookSignatureResponse, error)
	// contains filtered or unexported methods
}

WebhookServiceServer is the server API for WebhookService service. All implementations must embed UnimplementedWebhookServiceServer for forward compatibility

Jump to

Keyboard shortcuts

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