p8e

package
v1.11.1-rc4 Latest Latest
Warning

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

Go to latest
Published: Jun 27, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthP8E        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowP8E          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupP8E = fmt.Errorf("proto: unexpected end of group")
)
View Source
var DefinitionSpecType_name = map[int32]string{
	0: "DEFINITION_SPEC_TYPE_UNKNOWN",
	1: "DEFINITION_SPEC_TYPE_PROPOSED",
	2: "DEFINITION_SPEC_TYPE_FACT",
	3: "DEFINITION_SPEC_TYPE_FACT_LIST",
}
View Source
var DefinitionSpecType_value = map[string]int32{
	"DEFINITION_SPEC_TYPE_UNKNOWN":   0,
	"DEFINITION_SPEC_TYPE_PROPOSED":  1,
	"DEFINITION_SPEC_TYPE_FACT":      2,
	"DEFINITION_SPEC_TYPE_FACT_LIST": 3,
}
View Source
var ExecutionResultType_name = map[int32]string{
	0: "RESULT_TYPE_UNKNOWN",
	1: "RESULT_TYPE_PASS",
	2: "RESULT_TYPE_SKIP",
	3: "RESULT_TYPE_FAIL",
}
View Source
var ExecutionResultType_value = map[string]int32{
	"RESULT_TYPE_UNKNOWN": 0,
	"RESULT_TYPE_PASS":    1,
	"RESULT_TYPE_SKIP":    2,
	"RESULT_TYPE_FAIL":    3,
}
View Source
var PartyType_name = map[int32]string{
	0:  "PARTY_TYPE_UNKNOWN",
	1:  "PARTY_TYPE_ORIGINATOR",
	2:  "PARTY_TYPE_SERVICER",
	3:  "PARTY_TYPE_INVESTOR",
	4:  "PARTY_TYPE_CUSTODIAN",
	5:  "PARTY_TYPE_OWNER",
	6:  "PARTY_TYPE_AFFILIATE",
	7:  "PARTY_TYPE_OMNIBUS",
	8:  "PARTY_TYPE_PROVENANCE",
	9:  "PARTY_TYPE_MARKER",
	10: "PARTY_TYPE_CONTROLLER",
	11: "PARTY_TYPE_VALIDATOR",
}
View Source
var PartyType_value = map[string]int32{
	"PARTY_TYPE_UNKNOWN":    0,
	"PARTY_TYPE_ORIGINATOR": 1,
	"PARTY_TYPE_SERVICER":   2,
	"PARTY_TYPE_INVESTOR":   3,
	"PARTY_TYPE_CUSTODIAN":  4,
	"PARTY_TYPE_OWNER":      5,
	"PARTY_TYPE_AFFILIATE":  6,
	"PARTY_TYPE_OMNIBUS":    7,
	"PARTY_TYPE_PROVENANCE": 8,
	"PARTY_TYPE_MARKER":     9,
	"PARTY_TYPE_CONTROLLER": 10,
	"PARTY_TYPE_VALIDATOR":  11,
}
View Source
var PublicKeyCurve_name = map[int32]string{
	0: "SECP256K1",
	1: "P256",
}
View Source
var PublicKeyCurve_value = map[string]int32{
	"SECP256K1": 0,
	"P256":      1,
}
View Source
var PublicKeyType_name = map[int32]string{
	0: "ELLIPTIC",
}
View Source
var PublicKeyType_value = map[string]int32{
	"ELLIPTIC": 0,
}

Functions

This section is empty.

Types

type Condition

type Condition struct {
	ConditionName string           `protobuf:"bytes,1,opt,name=condition_name,json=conditionName,proto3" json:"condition_name,omitempty"`
	Result        *ExecutionResult `protobuf:"bytes,2,opt,name=result,proto3" json:"result,omitempty"`
}

func (*Condition) Descriptor

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

func (*Condition) GetConditionName

func (m *Condition) GetConditionName() string

func (*Condition) GetResult

func (m *Condition) GetResult() *ExecutionResult

func (*Condition) Marshal

func (m *Condition) Marshal() (dAtA []byte, err error)

func (*Condition) MarshalTo

func (m *Condition) MarshalTo(dAtA []byte) (int, error)

func (*Condition) MarshalToSizedBuffer

func (m *Condition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Condition) ProtoMessage

func (*Condition) ProtoMessage()

func (*Condition) Reset

func (m *Condition) Reset()

func (*Condition) Size

func (m *Condition) Size() (n int)

func (*Condition) String

func (m *Condition) String() string

func (*Condition) Unmarshal

func (m *Condition) Unmarshal(dAtA []byte) error

func (*Condition) XXX_DiscardUnknown

func (m *Condition) XXX_DiscardUnknown()

func (*Condition) XXX_Marshal

func (m *Condition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Condition) XXX_Merge

func (m *Condition) XXX_Merge(src proto.Message)

func (*Condition) XXX_Size

func (m *Condition) XXX_Size() int

func (*Condition) XXX_Unmarshal

func (m *Condition) XXX_Unmarshal(b []byte) error

type ConditionSpec

type ConditionSpec struct {
	FuncName   string            `protobuf:"bytes,1,opt,name=func_name,json=funcName,proto3" json:"func_name,omitempty"`
	InputSpecs []*DefinitionSpec `protobuf:"bytes,2,rep,name=input_specs,json=inputSpecs,proto3" json:"input_specs,omitempty"`
	OutputSpec *OutputSpec       `protobuf:"bytes,3,opt,name=output_spec,json=outputSpec,proto3" json:"output_spec,omitempty"`
}

func (*ConditionSpec) Descriptor

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

func (*ConditionSpec) GetFuncName

func (m *ConditionSpec) GetFuncName() string

func (*ConditionSpec) GetInputSpecs

func (m *ConditionSpec) GetInputSpecs() []*DefinitionSpec

func (*ConditionSpec) GetOutputSpec

func (m *ConditionSpec) GetOutputSpec() *OutputSpec

func (*ConditionSpec) Marshal

func (m *ConditionSpec) Marshal() (dAtA []byte, err error)

func (*ConditionSpec) MarshalTo

func (m *ConditionSpec) MarshalTo(dAtA []byte) (int, error)

func (*ConditionSpec) MarshalToSizedBuffer

func (m *ConditionSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConditionSpec) ProtoMessage

func (*ConditionSpec) ProtoMessage()

func (*ConditionSpec) Reset

func (m *ConditionSpec) Reset()

func (*ConditionSpec) Size

func (m *ConditionSpec) Size() (n int)

func (*ConditionSpec) String

func (m *ConditionSpec) String() string

func (*ConditionSpec) Unmarshal

func (m *ConditionSpec) Unmarshal(dAtA []byte) error

func (*ConditionSpec) XXX_DiscardUnknown

func (m *ConditionSpec) XXX_DiscardUnknown()

func (*ConditionSpec) XXX_Marshal

func (m *ConditionSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConditionSpec) XXX_Merge

func (m *ConditionSpec) XXX_Merge(src proto.Message)

func (*ConditionSpec) XXX_Size

func (m *ConditionSpec) XXX_Size() int

func (*ConditionSpec) XXX_Unmarshal

func (m *ConditionSpec) XXX_Unmarshal(b []byte) error

type Consideration

type Consideration struct {
	ConsiderationName string `protobuf:"bytes,1,opt,name=consideration_name,json=considerationName,proto3" json:"consideration_name,omitempty"`
	// Data pushed to a consideration that will ultimately match the output_spec of the consideration
	Inputs []*ProposedFact  `protobuf:"bytes,2,rep,name=inputs,proto3" json:"inputs,omitempty"`
	Result *ExecutionResult `protobuf:"bytes,3,opt,name=result,proto3" json:"result,omitempty"`
}

func (*Consideration) Descriptor

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

func (*Consideration) GetConsiderationName

func (m *Consideration) GetConsiderationName() string

func (*Consideration) GetInputs

func (m *Consideration) GetInputs() []*ProposedFact

func (*Consideration) GetResult

func (m *Consideration) GetResult() *ExecutionResult

func (*Consideration) Marshal

func (m *Consideration) Marshal() (dAtA []byte, err error)

func (*Consideration) MarshalTo

func (m *Consideration) MarshalTo(dAtA []byte) (int, error)

func (*Consideration) MarshalToSizedBuffer

func (m *Consideration) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Consideration) ProtoMessage

func (*Consideration) ProtoMessage()

func (*Consideration) Reset

func (m *Consideration) Reset()

func (*Consideration) Size

func (m *Consideration) Size() (n int)

func (*Consideration) String

func (m *Consideration) String() string

func (*Consideration) Unmarshal

func (m *Consideration) Unmarshal(dAtA []byte) error

func (*Consideration) XXX_DiscardUnknown

func (m *Consideration) XXX_DiscardUnknown()

func (*Consideration) XXX_Marshal

func (m *Consideration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Consideration) XXX_Merge

func (m *Consideration) XXX_Merge(src proto.Message)

func (*Consideration) XXX_Size

func (m *Consideration) XXX_Size() int

func (*Consideration) XXX_Unmarshal

func (m *Consideration) XXX_Unmarshal(b []byte) error

type ConsiderationSpec

type ConsiderationSpec struct {
	FuncName string `protobuf:"bytes,1,opt,name=func_name,json=funcName,proto3" json:"func_name,omitempty"`
	// Invoking party
	ResponsibleParty PartyType         `` /* 152-byte string literal not displayed */
	InputSpecs       []*DefinitionSpec `protobuf:"bytes,3,rep,name=input_specs,json=inputSpecs,proto3" json:"input_specs,omitempty"`
	OutputSpec       *OutputSpec       `protobuf:"bytes,4,opt,name=output_spec,json=outputSpec,proto3" json:"output_spec,omitempty"`
}

func (*ConsiderationSpec) Descriptor

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

func (*ConsiderationSpec) GetFuncName

func (m *ConsiderationSpec) GetFuncName() string

func (*ConsiderationSpec) GetInputSpecs

func (m *ConsiderationSpec) GetInputSpecs() []*DefinitionSpec

func (*ConsiderationSpec) GetOutputSpec

func (m *ConsiderationSpec) GetOutputSpec() *OutputSpec

func (*ConsiderationSpec) GetResponsibleParty

func (m *ConsiderationSpec) GetResponsibleParty() PartyType

func (*ConsiderationSpec) Marshal

func (m *ConsiderationSpec) Marshal() (dAtA []byte, err error)

func (*ConsiderationSpec) MarshalTo

func (m *ConsiderationSpec) MarshalTo(dAtA []byte) (int, error)

func (*ConsiderationSpec) MarshalToSizedBuffer

func (m *ConsiderationSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConsiderationSpec) ProtoMessage

func (*ConsiderationSpec) ProtoMessage()

func (*ConsiderationSpec) Reset

func (m *ConsiderationSpec) Reset()

func (*ConsiderationSpec) Size

func (m *ConsiderationSpec) Size() (n int)

func (*ConsiderationSpec) String

func (m *ConsiderationSpec) String() string

func (*ConsiderationSpec) Unmarshal

func (m *ConsiderationSpec) Unmarshal(dAtA []byte) error

func (*ConsiderationSpec) XXX_DiscardUnknown

func (m *ConsiderationSpec) XXX_DiscardUnknown()

func (*ConsiderationSpec) XXX_Marshal

func (m *ConsiderationSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConsiderationSpec) XXX_Merge

func (m *ConsiderationSpec) XXX_Merge(src proto.Message)

func (*ConsiderationSpec) XXX_Size

func (m *ConsiderationSpec) XXX_Size() int

func (*ConsiderationSpec) XXX_Unmarshal

func (m *ConsiderationSpec) XXX_Unmarshal(b []byte) error

type Contract

type Contract struct {
	Definition *DefinitionSpec `protobuf:"bytes,1,opt,name=definition,proto3" json:"definition,omitempty"`
	// Points to the proto for the contractSpec
	Spec *Fact `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"`
	// Invoker of this contract
	Invoker *SigningAndEncryptionPublicKeys `protobuf:"bytes,3,opt,name=invoker,proto3" json:"invoker,omitempty"`
	// Constructor arguments.
	// These are always the output of a previously recorded consideration.
	Inputs []*Fact `protobuf:"bytes,4,rep,name=inputs,proto3" json:"inputs,omitempty"`
	// conditions is a deprecated field that is not used at all anymore.
	Conditions     []*Condition     `protobuf:"bytes,5,rep,name=conditions,proto3" json:"conditions,omitempty"` // Deprecated: Do not use.
	Considerations []*Consideration `protobuf:"bytes,6,rep,name=considerations,proto3" json:"considerations,omitempty"`
	Recitals       []*Recital       `protobuf:"bytes,7,rep,name=recitals,proto3" json:"recitals,omitempty"`
	TimesExecuted  int32            `protobuf:"varint,8,opt,name=times_executed,json=timesExecuted,proto3" json:"times_executed,omitempty"`
	// This is only set once when the contract is initially executed
	StartTime *Timestamp `protobuf:"bytes,9,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	Context   []byte     `protobuf:"bytes,10,opt,name=context,proto3" json:"context,omitempty"`
}

func (*Contract) Descriptor

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

func (*Contract) GetConditions deprecated

func (m *Contract) GetConditions() []*Condition

Deprecated: Do not use.

func (*Contract) GetConsiderations

func (m *Contract) GetConsiderations() []*Consideration

func (*Contract) GetContext added in v1.3.0

func (m *Contract) GetContext() []byte

func (*Contract) GetDefinition

func (m *Contract) GetDefinition() *DefinitionSpec

func (*Contract) GetInputs

func (m *Contract) GetInputs() []*Fact

func (*Contract) GetInvoker

func (m *Contract) GetInvoker() *SigningAndEncryptionPublicKeys

func (*Contract) GetRecitals

func (m *Contract) GetRecitals() []*Recital

func (*Contract) GetSpec

func (m *Contract) GetSpec() *Fact

func (*Contract) GetStartTime

func (m *Contract) GetStartTime() *Timestamp

func (*Contract) GetTimesExecuted

func (m *Contract) GetTimesExecuted() int32

func (*Contract) Marshal

func (m *Contract) Marshal() (dAtA []byte, err error)

func (*Contract) MarshalTo

func (m *Contract) MarshalTo(dAtA []byte) (int, error)

func (*Contract) MarshalToSizedBuffer

func (m *Contract) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Contract) ProtoMessage

func (*Contract) ProtoMessage()

func (*Contract) Reset

func (m *Contract) Reset()

func (*Contract) Size

func (m *Contract) Size() (n int)

func (*Contract) String

func (m *Contract) String() string

func (*Contract) Unmarshal

func (m *Contract) Unmarshal(dAtA []byte) error

func (*Contract) XXX_DiscardUnknown

func (m *Contract) XXX_DiscardUnknown()

func (*Contract) XXX_Marshal

func (m *Contract) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Contract) XXX_Merge

func (m *Contract) XXX_Merge(src proto.Message)

func (*Contract) XXX_Size

func (m *Contract) XXX_Size() int

func (*Contract) XXX_Unmarshal

func (m *Contract) XXX_Unmarshal(b []byte) error

type ContractSpec

type ContractSpec struct {
	Definition         *DefinitionSpec      `protobuf:"bytes,1,opt,name=definition,proto3" json:"definition,omitempty"`
	InputSpecs         []*DefinitionSpec    `protobuf:"bytes,2,rep,name=input_specs,json=inputSpecs,proto3" json:"input_specs,omitempty"`
	PartiesInvolved    []PartyType          `` /* 156-byte string literal not displayed */
	ConditionSpecs     []*ConditionSpec     `protobuf:"bytes,4,rep,name=condition_specs,json=conditionSpecs,proto3" json:"condition_specs,omitempty"`
	ConsiderationSpecs []*ConsiderationSpec `protobuf:"bytes,5,rep,name=consideration_specs,json=considerationSpecs,proto3" json:"consideration_specs,omitempty"`
}

func (*ContractSpec) Descriptor

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

func (*ContractSpec) GetConditionSpecs

func (m *ContractSpec) GetConditionSpecs() []*ConditionSpec

func (*ContractSpec) GetConsiderationSpecs

func (m *ContractSpec) GetConsiderationSpecs() []*ConsiderationSpec

func (*ContractSpec) GetDefinition

func (m *ContractSpec) GetDefinition() *DefinitionSpec

func (*ContractSpec) GetInputSpecs

func (m *ContractSpec) GetInputSpecs() []*DefinitionSpec

func (*ContractSpec) GetPartiesInvolved

func (m *ContractSpec) GetPartiesInvolved() []PartyType

func (*ContractSpec) Marshal

func (m *ContractSpec) Marshal() (dAtA []byte, err error)

func (*ContractSpec) MarshalTo

func (m *ContractSpec) MarshalTo(dAtA []byte) (int, error)

func (*ContractSpec) MarshalToSizedBuffer

func (m *ContractSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContractSpec) ProtoMessage

func (*ContractSpec) ProtoMessage()

func (*ContractSpec) Reset

func (m *ContractSpec) Reset()

func (*ContractSpec) Size

func (m *ContractSpec) Size() (n int)

func (*ContractSpec) String

func (m *ContractSpec) String() string

func (*ContractSpec) Unmarshal

func (m *ContractSpec) Unmarshal(dAtA []byte) error

func (*ContractSpec) XXX_DiscardUnknown

func (m *ContractSpec) XXX_DiscardUnknown()

func (*ContractSpec) XXX_Marshal

func (m *ContractSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContractSpec) XXX_Merge

func (m *ContractSpec) XXX_Merge(src proto.Message)

func (*ContractSpec) XXX_Size

func (m *ContractSpec) XXX_Size() int

func (*ContractSpec) XXX_Unmarshal

func (m *ContractSpec) XXX_Unmarshal(b []byte) error

type DefinitionSpec

type DefinitionSpec struct {
	Name             string             `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ResourceLocation *Location          `protobuf:"bytes,2,opt,name=resource_location,json=resourceLocation,proto3" json:"resource_location,omitempty"`
	Signature        *Signature         `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	Type             DefinitionSpecType `protobuf:"varint,4,opt,name=type,proto3,enum=provenance.metadata.v1.p8e.DefinitionSpecType" json:"type,omitempty"`
}

func (*DefinitionSpec) Descriptor

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

func (*DefinitionSpec) GetName

func (m *DefinitionSpec) GetName() string

func (*DefinitionSpec) GetResourceLocation

func (m *DefinitionSpec) GetResourceLocation() *Location

func (*DefinitionSpec) GetSignature

func (m *DefinitionSpec) GetSignature() *Signature

func (*DefinitionSpec) GetType

func (m *DefinitionSpec) GetType() DefinitionSpecType

func (*DefinitionSpec) Marshal

func (m *DefinitionSpec) Marshal() (dAtA []byte, err error)

func (*DefinitionSpec) MarshalTo

func (m *DefinitionSpec) MarshalTo(dAtA []byte) (int, error)

func (*DefinitionSpec) MarshalToSizedBuffer

func (m *DefinitionSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DefinitionSpec) ProtoMessage

func (*DefinitionSpec) ProtoMessage()

func (*DefinitionSpec) Reset

func (m *DefinitionSpec) Reset()

func (*DefinitionSpec) Size

func (m *DefinitionSpec) Size() (n int)

func (*DefinitionSpec) String

func (m *DefinitionSpec) String() string

func (*DefinitionSpec) Unmarshal

func (m *DefinitionSpec) Unmarshal(dAtA []byte) error

func (*DefinitionSpec) XXX_DiscardUnknown

func (m *DefinitionSpec) XXX_DiscardUnknown()

func (*DefinitionSpec) XXX_Marshal

func (m *DefinitionSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DefinitionSpec) XXX_Merge

func (m *DefinitionSpec) XXX_Merge(src proto.Message)

func (*DefinitionSpec) XXX_Size

func (m *DefinitionSpec) XXX_Size() int

func (*DefinitionSpec) XXX_Unmarshal

func (m *DefinitionSpec) XXX_Unmarshal(b []byte) error

type DefinitionSpecType

type DefinitionSpecType int32
const (
	DefinitionSpecType_DEFINITION_SPEC_TYPE_UNKNOWN   DefinitionSpecType = 0
	DefinitionSpecType_DEFINITION_SPEC_TYPE_PROPOSED  DefinitionSpecType = 1
	DefinitionSpecType_DEFINITION_SPEC_TYPE_FACT      DefinitionSpecType = 2
	DefinitionSpecType_DEFINITION_SPEC_TYPE_FACT_LIST DefinitionSpecType = 3
)

func (DefinitionSpecType) EnumDescriptor

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

func (DefinitionSpecType) String

func (x DefinitionSpecType) String() string

type ExecutionResult

type ExecutionResult struct {
	Output       *ProposedFact       `protobuf:"bytes,1,opt,name=output,proto3" json:"output,omitempty"`
	Result       ExecutionResultType `protobuf:"varint,2,opt,name=result,proto3,enum=provenance.metadata.v1.p8e.ExecutionResultType" json:"result,omitempty"`
	RecordedAt   *Timestamp          `protobuf:"bytes,3,opt,name=recorded_at,json=recordedAt,proto3" json:"recorded_at,omitempty"`
	ErrorMessage string              `protobuf:"bytes,4,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
}

func (*ExecutionResult) Descriptor

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

func (*ExecutionResult) GetErrorMessage

func (m *ExecutionResult) GetErrorMessage() string

func (*ExecutionResult) GetOutput

func (m *ExecutionResult) GetOutput() *ProposedFact

func (*ExecutionResult) GetRecordedAt

func (m *ExecutionResult) GetRecordedAt() *Timestamp

func (*ExecutionResult) GetResult

func (m *ExecutionResult) GetResult() ExecutionResultType

func (*ExecutionResult) Marshal

func (m *ExecutionResult) Marshal() (dAtA []byte, err error)

func (*ExecutionResult) MarshalTo

func (m *ExecutionResult) MarshalTo(dAtA []byte) (int, error)

func (*ExecutionResult) MarshalToSizedBuffer

func (m *ExecutionResult) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExecutionResult) ProtoMessage

func (*ExecutionResult) ProtoMessage()

func (*ExecutionResult) Reset

func (m *ExecutionResult) Reset()

func (*ExecutionResult) Size

func (m *ExecutionResult) Size() (n int)

func (*ExecutionResult) String

func (m *ExecutionResult) String() string

func (*ExecutionResult) Unmarshal

func (m *ExecutionResult) Unmarshal(dAtA []byte) error

func (*ExecutionResult) XXX_DiscardUnknown

func (m *ExecutionResult) XXX_DiscardUnknown()

func (*ExecutionResult) XXX_Marshal

func (m *ExecutionResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecutionResult) XXX_Merge

func (m *ExecutionResult) XXX_Merge(src proto.Message)

func (*ExecutionResult) XXX_Size

func (m *ExecutionResult) XXX_Size() int

func (*ExecutionResult) XXX_Unmarshal

func (m *ExecutionResult) XXX_Unmarshal(b []byte) error

type ExecutionResultType

type ExecutionResultType int32
const (
	ExecutionResultType_RESULT_TYPE_UNKNOWN ExecutionResultType = 0
	ExecutionResultType_RESULT_TYPE_PASS    ExecutionResultType = 1
	// Couldn't process the condition/consideration due to missing facts being generated by other considerations.
	ExecutionResultType_RESULT_TYPE_SKIP ExecutionResultType = 2
	ExecutionResultType_RESULT_TYPE_FAIL ExecutionResultType = 3
)

func (ExecutionResultType) EnumDescriptor

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

func (ExecutionResultType) String

func (x ExecutionResultType) String() string

type Fact

type Fact struct {
	Name         string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	DataLocation *Location `protobuf:"bytes,2,opt,name=data_location,json=dataLocation,proto3" json:"data_location,omitempty"`
}

func (*Fact) Descriptor

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

func (*Fact) GetDataLocation

func (m *Fact) GetDataLocation() *Location

func (*Fact) GetName

func (m *Fact) GetName() string

func (*Fact) Marshal

func (m *Fact) Marshal() (dAtA []byte, err error)

func (*Fact) MarshalTo

func (m *Fact) MarshalTo(dAtA []byte) (int, error)

func (*Fact) MarshalToSizedBuffer

func (m *Fact) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Fact) ProtoMessage

func (*Fact) ProtoMessage()

func (*Fact) Reset

func (m *Fact) Reset()

func (*Fact) Size

func (m *Fact) Size() (n int)

func (*Fact) String

func (m *Fact) String() string

func (*Fact) Unmarshal

func (m *Fact) Unmarshal(dAtA []byte) error

func (*Fact) XXX_DiscardUnknown

func (m *Fact) XXX_DiscardUnknown()

func (*Fact) XXX_Marshal

func (m *Fact) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Fact) XXX_Merge

func (m *Fact) XXX_Merge(src proto.Message)

func (*Fact) XXX_Size

func (m *Fact) XXX_Size() int

func (*Fact) XXX_Unmarshal

func (m *Fact) XXX_Unmarshal(b []byte) error

type Location

type Location struct {
	Ref       *ProvenanceReference `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`
	Classname string               `protobuf:"bytes,2,opt,name=classname,proto3" json:"classname,omitempty"`
}

func (*Location) Descriptor

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

func (*Location) GetClassname

func (m *Location) GetClassname() string

func (*Location) GetRef

func (m *Location) GetRef() *ProvenanceReference

func (*Location) Marshal

func (m *Location) Marshal() (dAtA []byte, err error)

func (*Location) MarshalTo

func (m *Location) MarshalTo(dAtA []byte) (int, error)

func (*Location) MarshalToSizedBuffer

func (m *Location) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Location) ProtoMessage

func (*Location) ProtoMessage()

func (*Location) Reset

func (m *Location) Reset()

func (*Location) Size

func (m *Location) Size() (n int)

func (*Location) String

func (m *Location) String() string

func (*Location) Unmarshal

func (m *Location) Unmarshal(dAtA []byte) error

func (*Location) XXX_DiscardUnknown

func (m *Location) XXX_DiscardUnknown()

func (*Location) XXX_Marshal

func (m *Location) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Location) XXX_Merge

func (m *Location) XXX_Merge(src proto.Message)

func (*Location) XXX_Size

func (m *Location) XXX_Size() int

func (*Location) XXX_Unmarshal

func (m *Location) XXX_Unmarshal(b []byte) error

type OutputSpec

type OutputSpec struct {
	Spec *DefinitionSpec `protobuf:"bytes,1,opt,name=spec,proto3" json:"spec,omitempty"`
}

func (*OutputSpec) Descriptor

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

func (*OutputSpec) GetSpec

func (m *OutputSpec) GetSpec() *DefinitionSpec

func (*OutputSpec) Marshal

func (m *OutputSpec) Marshal() (dAtA []byte, err error)

func (*OutputSpec) MarshalTo

func (m *OutputSpec) MarshalTo(dAtA []byte) (int, error)

func (*OutputSpec) MarshalToSizedBuffer

func (m *OutputSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*OutputSpec) ProtoMessage

func (*OutputSpec) ProtoMessage()

func (*OutputSpec) Reset

func (m *OutputSpec) Reset()

func (*OutputSpec) Size

func (m *OutputSpec) Size() (n int)

func (*OutputSpec) String

func (m *OutputSpec) String() string

func (*OutputSpec) Unmarshal

func (m *OutputSpec) Unmarshal(dAtA []byte) error

func (*OutputSpec) XXX_DiscardUnknown

func (m *OutputSpec) XXX_DiscardUnknown()

func (*OutputSpec) XXX_Marshal

func (m *OutputSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*OutputSpec) XXX_Merge

func (m *OutputSpec) XXX_Merge(src proto.Message)

func (*OutputSpec) XXX_Size

func (m *OutputSpec) XXX_Size() int

func (*OutputSpec) XXX_Unmarshal

func (m *OutputSpec) XXX_Unmarshal(b []byte) error

type PartyType

type PartyType int32
const (
	PartyType_PARTY_TYPE_UNKNOWN    PartyType = 0
	PartyType_PARTY_TYPE_ORIGINATOR PartyType = 1
	PartyType_PARTY_TYPE_SERVICER   PartyType = 2
	PartyType_PARTY_TYPE_INVESTOR   PartyType = 3
	PartyType_PARTY_TYPE_CUSTODIAN  PartyType = 4
	PartyType_PARTY_TYPE_OWNER      PartyType = 5
	PartyType_PARTY_TYPE_AFFILIATE  PartyType = 6
	PartyType_PARTY_TYPE_OMNIBUS    PartyType = 7
	PartyType_PARTY_TYPE_PROVENANCE PartyType = 8
	PartyType_PARTY_TYPE_MARKER     PartyType = 9
	PartyType_PARTY_TYPE_CONTROLLER PartyType = 10
	PartyType_PARTY_TYPE_VALIDATOR  PartyType = 11
)

func (PartyType) EnumDescriptor

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

func (PartyType) String

func (x PartyType) String() string

type ProposedFact

type ProposedFact struct {
	Name      string               `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Hash      string               `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	Classname string               `protobuf:"bytes,3,opt,name=classname,proto3" json:"classname,omitempty"`
	Ancestor  *ProvenanceReference `protobuf:"bytes,4,opt,name=ancestor,proto3" json:"ancestor,omitempty"`
}

func (*ProposedFact) Descriptor

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

func (*ProposedFact) GetAncestor

func (m *ProposedFact) GetAncestor() *ProvenanceReference

func (*ProposedFact) GetClassname

func (m *ProposedFact) GetClassname() string

func (*ProposedFact) GetHash

func (m *ProposedFact) GetHash() string

func (*ProposedFact) GetName

func (m *ProposedFact) GetName() string

func (*ProposedFact) Marshal

func (m *ProposedFact) Marshal() (dAtA []byte, err error)

func (*ProposedFact) MarshalTo

func (m *ProposedFact) MarshalTo(dAtA []byte) (int, error)

func (*ProposedFact) MarshalToSizedBuffer

func (m *ProposedFact) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposedFact) ProtoMessage

func (*ProposedFact) ProtoMessage()

func (*ProposedFact) Reset

func (m *ProposedFact) Reset()

func (*ProposedFact) Size

func (m *ProposedFact) Size() (n int)

func (*ProposedFact) String

func (m *ProposedFact) String() string

func (*ProposedFact) Unmarshal

func (m *ProposedFact) Unmarshal(dAtA []byte) error

func (*ProposedFact) XXX_DiscardUnknown

func (m *ProposedFact) XXX_DiscardUnknown()

func (*ProposedFact) XXX_Marshal

func (m *ProposedFact) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposedFact) XXX_Merge

func (m *ProposedFact) XXX_Merge(src proto.Message)

func (*ProposedFact) XXX_Size

func (m *ProposedFact) XXX_Size() int

func (*ProposedFact) XXX_Unmarshal

func (m *ProposedFact) XXX_Unmarshal(b []byte) error

type ProvenanceReference

type ProvenanceReference struct {
	// [Req] [Scope.uuid]
	// Scope ID
	ScopeUuid *UUID `protobuf:"bytes,1,opt,name=scope_uuid,json=scopeUuid,proto3" json:"scope_uuid,omitempty"`
	// [Opt] [RecordGroup.group_uuid]
	// require record to be within a specific group
	GroupUuid *UUID `protobuf:"bytes,2,opt,name=group_uuid,json=groupUuid,proto3" json:"group_uuid,omitempty"`
	// [Opt] [Record.result_hash]
	// specify a specific record inside a scope (and group) by result-hash
	Hash string `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
	// [Opt] [Record.result_name]
	// specify a result-name of a record within a scope
	Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
}

func (*ProvenanceReference) Descriptor

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

func (*ProvenanceReference) GetGroupUuid

func (m *ProvenanceReference) GetGroupUuid() *UUID

func (*ProvenanceReference) GetHash

func (m *ProvenanceReference) GetHash() string

func (*ProvenanceReference) GetName

func (m *ProvenanceReference) GetName() string

func (*ProvenanceReference) GetScopeUuid

func (m *ProvenanceReference) GetScopeUuid() *UUID

func (*ProvenanceReference) Marshal

func (m *ProvenanceReference) Marshal() (dAtA []byte, err error)

func (*ProvenanceReference) MarshalTo

func (m *ProvenanceReference) MarshalTo(dAtA []byte) (int, error)

func (*ProvenanceReference) MarshalToSizedBuffer

func (m *ProvenanceReference) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProvenanceReference) ProtoMessage

func (*ProvenanceReference) ProtoMessage()

func (*ProvenanceReference) Reset

func (m *ProvenanceReference) Reset()

func (*ProvenanceReference) Size

func (m *ProvenanceReference) Size() (n int)

func (*ProvenanceReference) String

func (m *ProvenanceReference) String() string

func (*ProvenanceReference) Unmarshal

func (m *ProvenanceReference) Unmarshal(dAtA []byte) error

func (*ProvenanceReference) XXX_DiscardUnknown

func (m *ProvenanceReference) XXX_DiscardUnknown()

func (*ProvenanceReference) XXX_Marshal

func (m *ProvenanceReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProvenanceReference) XXX_Merge

func (m *ProvenanceReference) XXX_Merge(src proto.Message)

func (*ProvenanceReference) XXX_Size

func (m *ProvenanceReference) XXX_Size() int

func (*ProvenanceReference) XXX_Unmarshal

func (m *ProvenanceReference) XXX_Unmarshal(b []byte) error

type PublicKey

type PublicKey struct {
	PublicKeyBytes []byte         `protobuf:"bytes,1,opt,name=public_key_bytes,json=publicKeyBytes,proto3" json:"public_key_bytes,omitempty"`
	Type           PublicKeyType  `protobuf:"varint,2,opt,name=type,proto3,enum=provenance.metadata.v1.p8e.PublicKeyType" json:"type,omitempty"`
	Curve          PublicKeyCurve `protobuf:"varint,3,opt,name=curve,proto3,enum=provenance.metadata.v1.p8e.PublicKeyCurve" json:"curve,omitempty"`
}

func (*PublicKey) Descriptor

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

func (*PublicKey) GetCurve

func (m *PublicKey) GetCurve() PublicKeyCurve

func (*PublicKey) GetPublicKeyBytes

func (m *PublicKey) GetPublicKeyBytes() []byte

func (*PublicKey) GetType

func (m *PublicKey) GetType() PublicKeyType

func (*PublicKey) Marshal

func (m *PublicKey) Marshal() (dAtA []byte, err error)

func (*PublicKey) MarshalTo

func (m *PublicKey) MarshalTo(dAtA []byte) (int, error)

func (*PublicKey) MarshalToSizedBuffer

func (m *PublicKey) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PublicKey) ProtoMessage

func (*PublicKey) ProtoMessage()

func (*PublicKey) Reset

func (m *PublicKey) Reset()

func (*PublicKey) Size

func (m *PublicKey) Size() (n int)

func (*PublicKey) String

func (m *PublicKey) String() string

func (*PublicKey) Unmarshal

func (m *PublicKey) Unmarshal(dAtA []byte) error

func (*PublicKey) XXX_DiscardUnknown

func (m *PublicKey) XXX_DiscardUnknown()

func (*PublicKey) XXX_Marshal

func (m *PublicKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PublicKey) XXX_Merge

func (m *PublicKey) XXX_Merge(src proto.Message)

func (*PublicKey) XXX_Size

func (m *PublicKey) XXX_Size() int

func (*PublicKey) XXX_Unmarshal

func (m *PublicKey) XXX_Unmarshal(b []byte) error

type PublicKeyCurve

type PublicKeyCurve int32
const (
	PublicKeyCurve_SECP256K1 PublicKeyCurve = 0
	PublicKeyCurve_P256      PublicKeyCurve = 1
)

func (PublicKeyCurve) EnumDescriptor

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

func (PublicKeyCurve) String

func (x PublicKeyCurve) String() string

type PublicKeyType

type PublicKeyType int32
const (
	PublicKeyType_ELLIPTIC PublicKeyType = 0
)

func (PublicKeyType) EnumDescriptor

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

func (PublicKeyType) String

func (x PublicKeyType) String() string

type Recital

type Recital struct {
	SignerRole PartyType                       `` /* 134-byte string literal not displayed */
	Signer     *SigningAndEncryptionPublicKeys `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	Address    []byte                          `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
}

func (*Recital) Descriptor

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

func (*Recital) GetAddress

func (m *Recital) GetAddress() []byte

func (*Recital) GetSigner

func (m *Recital) GetSigner() *SigningAndEncryptionPublicKeys

func (*Recital) GetSignerRole

func (m *Recital) GetSignerRole() PartyType

func (*Recital) Marshal

func (m *Recital) Marshal() (dAtA []byte, err error)

func (*Recital) MarshalTo

func (m *Recital) MarshalTo(dAtA []byte) (int, error)

func (*Recital) MarshalToSizedBuffer

func (m *Recital) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Recital) ProtoMessage

func (*Recital) ProtoMessage()

func (*Recital) Reset

func (m *Recital) Reset()

func (*Recital) Size

func (m *Recital) Size() (n int)

func (*Recital) String

func (m *Recital) String() string

func (*Recital) Unmarshal

func (m *Recital) Unmarshal(dAtA []byte) error

func (*Recital) XXX_DiscardUnknown

func (m *Recital) XXX_DiscardUnknown()

func (*Recital) XXX_Marshal

func (m *Recital) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Recital) XXX_Merge

func (m *Recital) XXX_Merge(src proto.Message)

func (*Recital) XXX_Size

func (m *Recital) XXX_Size() int

func (*Recital) XXX_Unmarshal

func (m *Recital) XXX_Unmarshal(b []byte) error

type Recitals

type Recitals struct {
	Parties []*Recital `protobuf:"bytes,1,rep,name=parties,proto3" json:"parties,omitempty"`
}

func (*Recitals) Descriptor

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

func (*Recitals) GetParties

func (m *Recitals) GetParties() []*Recital

func (*Recitals) Marshal

func (m *Recitals) Marshal() (dAtA []byte, err error)

func (*Recitals) MarshalTo

func (m *Recitals) MarshalTo(dAtA []byte) (int, error)

func (*Recitals) MarshalToSizedBuffer

func (m *Recitals) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Recitals) ProtoMessage

func (*Recitals) ProtoMessage()

func (*Recitals) Reset

func (m *Recitals) Reset()

func (*Recitals) Size

func (m *Recitals) Size() (n int)

func (*Recitals) String

func (m *Recitals) String() string

func (*Recitals) Unmarshal

func (m *Recitals) Unmarshal(dAtA []byte) error

func (*Recitals) XXX_DiscardUnknown

func (m *Recitals) XXX_DiscardUnknown()

func (*Recitals) XXX_Marshal

func (m *Recitals) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Recitals) XXX_Merge

func (m *Recitals) XXX_Merge(src proto.Message)

func (*Recitals) XXX_Size

func (m *Recitals) XXX_Size() int

func (*Recitals) XXX_Unmarshal

func (m *Recitals) XXX_Unmarshal(b []byte) error

type Signature

type Signature struct {
	// Signature Detail
	Algo      string `protobuf:"bytes,1,opt,name=algo,proto3" json:"algo,omitempty"`
	Provider  string `protobuf:"bytes,2,opt,name=provider,proto3" json:"provider,omitempty"`
	Signature string `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	// Identity of signer
	Signer *SigningAndEncryptionPublicKeys `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"`
}

func (*Signature) Descriptor

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

func (*Signature) GetAlgo

func (m *Signature) GetAlgo() string

func (*Signature) GetProvider

func (m *Signature) GetProvider() string

func (*Signature) GetSignature

func (m *Signature) GetSignature() string

func (*Signature) GetSigner

func (m *Signature) GetSigner() *SigningAndEncryptionPublicKeys

func (*Signature) Marshal

func (m *Signature) Marshal() (dAtA []byte, err error)

func (*Signature) MarshalTo

func (m *Signature) MarshalTo(dAtA []byte) (int, error)

func (*Signature) MarshalToSizedBuffer

func (m *Signature) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Signature) ProtoMessage

func (*Signature) ProtoMessage()

func (*Signature) Reset

func (m *Signature) Reset()

func (*Signature) Size

func (m *Signature) Size() (n int)

func (*Signature) String

func (m *Signature) String() string

func (*Signature) Unmarshal

func (m *Signature) Unmarshal(dAtA []byte) error

func (*Signature) XXX_DiscardUnknown

func (m *Signature) XXX_DiscardUnknown()

func (*Signature) XXX_Marshal

func (m *Signature) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Signature) XXX_Merge

func (m *Signature) XXX_Merge(src proto.Message)

func (*Signature) XXX_Size

func (m *Signature) XXX_Size() int

func (*Signature) XXX_Unmarshal

func (m *Signature) XXX_Unmarshal(b []byte) error

type SignatureSet

type SignatureSet struct {
	Signatures []*Signature `protobuf:"bytes,1,rep,name=signatures,proto3" json:"signatures,omitempty"`
}

func (*SignatureSet) Descriptor

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

func (*SignatureSet) GetSignatures

func (m *SignatureSet) GetSignatures() []*Signature

func (*SignatureSet) Marshal

func (m *SignatureSet) Marshal() (dAtA []byte, err error)

func (*SignatureSet) MarshalTo

func (m *SignatureSet) MarshalTo(dAtA []byte) (int, error)

func (*SignatureSet) MarshalToSizedBuffer

func (m *SignatureSet) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SignatureSet) ProtoMessage

func (*SignatureSet) ProtoMessage()

func (*SignatureSet) Reset

func (m *SignatureSet) Reset()

func (*SignatureSet) Size

func (m *SignatureSet) Size() (n int)

func (*SignatureSet) String

func (m *SignatureSet) String() string

func (*SignatureSet) Unmarshal

func (m *SignatureSet) Unmarshal(dAtA []byte) error

func (*SignatureSet) XXX_DiscardUnknown

func (m *SignatureSet) XXX_DiscardUnknown()

func (*SignatureSet) XXX_Marshal

func (m *SignatureSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SignatureSet) XXX_Merge

func (m *SignatureSet) XXX_Merge(src proto.Message)

func (*SignatureSet) XXX_Size

func (m *SignatureSet) XXX_Size() int

func (*SignatureSet) XXX_Unmarshal

func (m *SignatureSet) XXX_Unmarshal(b []byte) error

type SigningAndEncryptionPublicKeys

type SigningAndEncryptionPublicKeys struct {
	SigningPublicKey    *PublicKey `protobuf:"bytes,1,opt,name=signing_public_key,json=signingPublicKey,proto3" json:"signing_public_key,omitempty"`
	EncryptionPublicKey *PublicKey `protobuf:"bytes,2,opt,name=encryption_public_key,json=encryptionPublicKey,proto3" json:"encryption_public_key,omitempty"`
}

func (*SigningAndEncryptionPublicKeys) Descriptor

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

func (*SigningAndEncryptionPublicKeys) GetEncryptionPublicKey

func (m *SigningAndEncryptionPublicKeys) GetEncryptionPublicKey() *PublicKey

func (*SigningAndEncryptionPublicKeys) GetSigningPublicKey

func (m *SigningAndEncryptionPublicKeys) GetSigningPublicKey() *PublicKey

func (*SigningAndEncryptionPublicKeys) Marshal

func (m *SigningAndEncryptionPublicKeys) Marshal() (dAtA []byte, err error)

func (*SigningAndEncryptionPublicKeys) MarshalTo

func (m *SigningAndEncryptionPublicKeys) MarshalTo(dAtA []byte) (int, error)

func (*SigningAndEncryptionPublicKeys) MarshalToSizedBuffer

func (m *SigningAndEncryptionPublicKeys) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SigningAndEncryptionPublicKeys) ProtoMessage

func (*SigningAndEncryptionPublicKeys) ProtoMessage()

func (*SigningAndEncryptionPublicKeys) Reset

func (m *SigningAndEncryptionPublicKeys) Reset()

func (*SigningAndEncryptionPublicKeys) Size

func (m *SigningAndEncryptionPublicKeys) Size() (n int)

func (*SigningAndEncryptionPublicKeys) String

func (*SigningAndEncryptionPublicKeys) Unmarshal

func (m *SigningAndEncryptionPublicKeys) Unmarshal(dAtA []byte) error

func (*SigningAndEncryptionPublicKeys) XXX_DiscardUnknown

func (m *SigningAndEncryptionPublicKeys) XXX_DiscardUnknown()

func (*SigningAndEncryptionPublicKeys) XXX_Marshal

func (m *SigningAndEncryptionPublicKeys) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SigningAndEncryptionPublicKeys) XXX_Merge

func (m *SigningAndEncryptionPublicKeys) XXX_Merge(src proto.Message)

func (*SigningAndEncryptionPublicKeys) XXX_Size

func (m *SigningAndEncryptionPublicKeys) XXX_Size() int

func (*SigningAndEncryptionPublicKeys) XXX_Unmarshal

func (m *SigningAndEncryptionPublicKeys) XXX_Unmarshal(b []byte) error

type Timestamp

type Timestamp struct {
	// Represents seconds of UTC time since Unix epoch
	Seconds int64 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"`
	// Non-negative fractions of a second at nanosecond resolution.
	Nanos int32 `protobuf:"varint,2,opt,name=nanos,proto3" json:"nanos,omitempty"`
}

A Timestamp represents a point in time using values relative to the epoch.

func (*Timestamp) Descriptor

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

func (*Timestamp) GetNanos

func (m *Timestamp) GetNanos() int32

func (*Timestamp) GetSeconds

func (m *Timestamp) GetSeconds() int64

func (*Timestamp) Marshal

func (m *Timestamp) Marshal() (dAtA []byte, err error)

func (*Timestamp) MarshalTo

func (m *Timestamp) MarshalTo(dAtA []byte) (int, error)

func (*Timestamp) MarshalToSizedBuffer

func (m *Timestamp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Timestamp) ProtoMessage

func (*Timestamp) ProtoMessage()

func (*Timestamp) Reset

func (m *Timestamp) Reset()

func (*Timestamp) Size

func (m *Timestamp) Size() (n int)

func (*Timestamp) String

func (m *Timestamp) String() string

func (*Timestamp) Unmarshal

func (m *Timestamp) Unmarshal(dAtA []byte) error

func (*Timestamp) XXX_DiscardUnknown

func (m *Timestamp) XXX_DiscardUnknown()

func (*Timestamp) XXX_Marshal

func (m *Timestamp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Timestamp) XXX_Merge

func (m *Timestamp) XXX_Merge(src proto.Message)

func (*Timestamp) XXX_Size

func (m *Timestamp) XXX_Size() int

func (*Timestamp) XXX_Unmarshal

func (m *Timestamp) XXX_Unmarshal(b []byte) error

type UUID

type UUID struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
}

func (*UUID) Descriptor

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

func (*UUID) GetValue

func (m *UUID) GetValue() string

func (*UUID) Marshal

func (m *UUID) Marshal() (dAtA []byte, err error)

func (*UUID) MarshalTo

func (m *UUID) MarshalTo(dAtA []byte) (int, error)

func (*UUID) MarshalToSizedBuffer

func (m *UUID) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UUID) ProtoMessage

func (*UUID) ProtoMessage()

func (*UUID) Reset

func (m *UUID) Reset()

func (*UUID) Size

func (m *UUID) Size() (n int)

func (*UUID) String

func (m *UUID) String() string

func (*UUID) Unmarshal

func (m *UUID) Unmarshal(dAtA []byte) error

func (*UUID) XXX_DiscardUnknown

func (m *UUID) XXX_DiscardUnknown()

func (*UUID) XXX_Marshal

func (m *UUID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UUID) XXX_Merge

func (m *UUID) XXX_Merge(src proto.Message)

func (*UUID) XXX_Size

func (m *UUID) XXX_Size() int

func (*UUID) XXX_Unmarshal

func (m *UUID) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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