base

package
v1.29.0-20221206075611... Latest Latest
Warning

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

Go to latest
Published: unknown License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_schema_ids_base_assetID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_classificationID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_dataID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_hashID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_id_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_identityID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_maintainerID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_orderID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_ownableID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_propertyID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_splitID_proto protoreflect.FileDescriptor
View Source
var File_schema_ids_base_stringID_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AssetID

type AssetID struct {
	HashId *HashID `protobuf:"bytes,1,opt,name=hash_id,json=hashId,proto3" json:"hash_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AssetID) Descriptor deprecated

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

Deprecated: Use AssetID.ProtoReflect.Descriptor instead.

func (*AssetID) GetHashId

func (x *AssetID) GetHashId() *HashID

func (*AssetID) ProtoMessage

func (*AssetID) ProtoMessage()

func (*AssetID) ProtoReflect

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

func (*AssetID) Reset

func (x *AssetID) Reset()

func (*AssetID) String

func (x *AssetID) String() string

type ClassificationID

type ClassificationID struct {
	HashId *HashID `protobuf:"bytes,1,opt,name=hash_id,json=hashId,proto3" json:"hash_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ClassificationID) Descriptor deprecated

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

Deprecated: Use ClassificationID.ProtoReflect.Descriptor instead.

func (*ClassificationID) GetHashId

func (x *ClassificationID) GetHashId() *HashID

func (*ClassificationID) ProtoMessage

func (*ClassificationID) ProtoMessage()

func (*ClassificationID) ProtoReflect

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

func (*ClassificationID) Reset

func (x *ClassificationID) Reset()

func (*ClassificationID) String

func (x *ClassificationID) String() string

type DataID

type DataID struct {
	Type   *StringID `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	HashId *HashID   `protobuf:"bytes,2,opt,name=hash_id,json=hashId,proto3" json:"hash_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DataID) Descriptor deprecated

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

Deprecated: Use DataID.ProtoReflect.Descriptor instead.

func (*DataID) GetHashId

func (x *DataID) GetHashId() *HashID

func (*DataID) GetType

func (x *DataID) GetType() *StringID

func (*DataID) ProtoMessage

func (*DataID) ProtoMessage()

func (*DataID) ProtoReflect

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

func (*DataID) Reset

func (x *DataID) Reset()

func (*DataID) String

func (x *DataID) String() string

type HashID

type HashID struct {
	IdBytes []byte `protobuf:"bytes,1,opt,name=id_bytes,json=idBytes,proto3" json:"id_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*HashID) Descriptor deprecated

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

Deprecated: Use HashID.ProtoReflect.Descriptor instead.

func (*HashID) GetIdBytes

func (x *HashID) GetIdBytes() []byte

func (*HashID) ProtoMessage

func (*HashID) ProtoMessage()

func (*HashID) ProtoReflect

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

func (*HashID) Reset

func (x *HashID) Reset()

func (*HashID) String

func (x *HashID) String() string

type ID

type ID struct {

	// Types that are assignable to Impl:
	//
	//	*ID_AssetId
	//	*ID_ClassificationId
	//	*ID_DataId
	//	*ID_HashId
	//	*ID_IdentityId
	//	*ID_MaintainerId
	//	*ID_OrderId
	//	*ID_OwnableId
	//	*ID_PropertyId
	//	*ID_SplitId
	//	*ID_StringId
	Impl isID_Impl `protobuf_oneof:"impl"`
	// contains filtered or unexported fields
}

func (*ID) Descriptor deprecated

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

Deprecated: Use ID.ProtoReflect.Descriptor instead.

func (*ID) GetAssetId

func (x *ID) GetAssetId() *AssetID

func (*ID) GetClassificationId

func (x *ID) GetClassificationId() *ClassificationID

func (*ID) GetDataId

func (x *ID) GetDataId() *DataID

func (*ID) GetHashId

func (x *ID) GetHashId() *HashID

func (*ID) GetIdentityId

func (x *ID) GetIdentityId() *IdentityID

func (*ID) GetImpl

func (m *ID) GetImpl() isID_Impl

func (*ID) GetMaintainerId

func (x *ID) GetMaintainerId() *MaintainerID

func (*ID) GetOrderId

func (x *ID) GetOrderId() *OrderID

func (*ID) GetOwnableId

func (x *ID) GetOwnableId() *OwnableID

func (*ID) GetPropertyId

func (x *ID) GetPropertyId() *PropertyID

func (*ID) GetSplitId

func (x *ID) GetSplitId() *SplitID

func (*ID) GetStringId

func (x *ID) GetStringId() *StringID

func (*ID) ProtoMessage

func (*ID) ProtoMessage()

func (*ID) ProtoReflect

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

func (*ID) Reset

func (x *ID) Reset()

func (*ID) String

func (x *ID) String() string

type ID_AssetId

type ID_AssetId struct {
	AssetId *AssetID `protobuf:"bytes,1,opt,name=asset_id,json=assetId,proto3,oneof"`
}

type ID_ClassificationId

type ID_ClassificationId struct {
	ClassificationId *ClassificationID `protobuf:"bytes,2,opt,name=classification_id,json=classificationId,proto3,oneof"`
}

type ID_DataId

type ID_DataId struct {
	DataId *DataID `protobuf:"bytes,3,opt,name=data_id,json=dataId,proto3,oneof"`
}

type ID_HashId

type ID_HashId struct {
	HashId *HashID `protobuf:"bytes,4,opt,name=hash_id,json=hashId,proto3,oneof"`
}

type ID_IdentityId

type ID_IdentityId struct {
	IdentityId *IdentityID `protobuf:"bytes,5,opt,name=identity_id,json=identityId,proto3,oneof"`
}

type ID_MaintainerId

type ID_MaintainerId struct {
	MaintainerId *MaintainerID `protobuf:"bytes,6,opt,name=maintainer_id,json=maintainerId,proto3,oneof"`
}

type ID_OrderId

type ID_OrderId struct {
	OrderId *OrderID `protobuf:"bytes,7,opt,name=order_id,json=orderId,proto3,oneof"`
}

type ID_OwnableId

type ID_OwnableId struct {
	OwnableId *OwnableID `protobuf:"bytes,8,opt,name=ownable_id,json=ownableId,proto3,oneof"`
}

type ID_PropertyId

type ID_PropertyId struct {
	PropertyId *PropertyID `protobuf:"bytes,9,opt,name=property_id,json=propertyId,proto3,oneof"`
}

type ID_SplitId

type ID_SplitId struct {
	SplitId *SplitID `protobuf:"bytes,10,opt,name=split_id,json=splitId,proto3,oneof"`
}

type ID_StringId

type ID_StringId struct {
	StringId *StringID `protobuf:"bytes,11,opt,name=string_id,json=stringId,proto3,oneof"`
}

type IdentityID

type IdentityID struct {
	HashId *HashID `protobuf:"bytes,1,opt,name=hash_id,json=hashId,proto3" json:"hash_id,omitempty"`
	// contains filtered or unexported fields
}

func (*IdentityID) Descriptor deprecated

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

Deprecated: Use IdentityID.ProtoReflect.Descriptor instead.

func (*IdentityID) GetHashId

func (x *IdentityID) GetHashId() *HashID

func (*IdentityID) ProtoMessage

func (*IdentityID) ProtoMessage()

func (*IdentityID) ProtoReflect

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

func (*IdentityID) Reset

func (x *IdentityID) Reset()

func (*IdentityID) String

func (x *IdentityID) String() string

type MaintainerID

type MaintainerID struct {
	HashId *HashID `protobuf:"bytes,1,opt,name=hash_id,json=hashId,proto3" json:"hash_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MaintainerID) Descriptor deprecated

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

Deprecated: Use MaintainerID.ProtoReflect.Descriptor instead.

func (*MaintainerID) GetHashId

func (x *MaintainerID) GetHashId() *HashID

func (*MaintainerID) ProtoMessage

func (*MaintainerID) ProtoMessage()

func (*MaintainerID) ProtoReflect

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

func (*MaintainerID) Reset

func (x *MaintainerID) Reset()

func (*MaintainerID) String

func (x *MaintainerID) String() string

type OrderID

type OrderID struct {
	OrderId *HashID `protobuf:"bytes,1,opt,name=order_id,json=orderId,proto3" json:"order_id,omitempty"`
	// contains filtered or unexported fields
}

func (*OrderID) Descriptor deprecated

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

Deprecated: Use OrderID.ProtoReflect.Descriptor instead.

func (*OrderID) GetOrderId

func (x *OrderID) GetOrderId() *HashID

func (*OrderID) ProtoMessage

func (*OrderID) ProtoMessage()

func (*OrderID) ProtoReflect

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

func (*OrderID) Reset

func (x *OrderID) Reset()

func (*OrderID) String

func (x *OrderID) String() string

type OwnableID

type OwnableID struct {
	StringId *StringID `protobuf:"bytes,1,opt,name=string_id,json=stringId,proto3" json:"string_id,omitempty"`
	// contains filtered or unexported fields
}

func (*OwnableID) Descriptor deprecated

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

Deprecated: Use OwnableID.ProtoReflect.Descriptor instead.

func (*OwnableID) GetStringId

func (x *OwnableID) GetStringId() *StringID

func (*OwnableID) ProtoMessage

func (*OwnableID) ProtoMessage()

func (*OwnableID) ProtoReflect

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

func (*OwnableID) Reset

func (x *OwnableID) Reset()

func (*OwnableID) String

func (x *OwnableID) String() string

type PropertyID

type PropertyID struct {
	KeyID  *StringID `protobuf:"bytes,1,opt,name=key_i_d,json=keyID,proto3" json:"key_i_d,omitempty"`
	TypeID *StringID `protobuf:"bytes,2,opt,name=type_i_d,json=typeID,proto3" json:"type_i_d,omitempty"`
	// contains filtered or unexported fields
}

func (*PropertyID) Descriptor deprecated

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

Deprecated: Use PropertyID.ProtoReflect.Descriptor instead.

func (*PropertyID) GetKeyID

func (x *PropertyID) GetKeyID() *StringID

func (*PropertyID) GetTypeID

func (x *PropertyID) GetTypeID() *StringID

func (*PropertyID) ProtoMessage

func (*PropertyID) ProtoMessage()

func (*PropertyID) ProtoReflect

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

func (*PropertyID) Reset

func (x *PropertyID) Reset()

func (*PropertyID) String

func (x *PropertyID) String() string

type SplitID

type SplitID struct {
	OwnerId   *IdentityID `protobuf:"bytes,1,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`
	OwnableId *OwnableID  `protobuf:"bytes,2,opt,name=ownable_id,json=ownableId,proto3" json:"ownable_id,omitempty"`
	// contains filtered or unexported fields
}

func (*SplitID) Descriptor deprecated

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

Deprecated: Use SplitID.ProtoReflect.Descriptor instead.

func (*SplitID) GetOwnableId

func (x *SplitID) GetOwnableId() *OwnableID

func (*SplitID) GetOwnerId

func (x *SplitID) GetOwnerId() *IdentityID

func (*SplitID) ProtoMessage

func (*SplitID) ProtoMessage()

func (*SplitID) ProtoReflect

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

func (*SplitID) Reset

func (x *SplitID) Reset()

func (*SplitID) String

func (x *SplitID) String() string

type StringID

type StringID struct {
	IdString string `protobuf:"bytes,1,opt,name=id_string,json=idString,proto3" json:"id_string,omitempty"`
	// contains filtered or unexported fields
}

func (*StringID) Descriptor deprecated

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

Deprecated: Use StringID.ProtoReflect.Descriptor instead.

func (*StringID) GetIdString

func (x *StringID) GetIdString() string

func (*StringID) ProtoMessage

func (*StringID) ProtoMessage()

func (*StringID) ProtoReflect

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

func (*StringID) Reset

func (x *StringID) Reset()

func (*StringID) String

func (x *StringID) String() string

Jump to

Keyboard shortcuts

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