io.provenance.metadata.v1.RecordSpecIdInfoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/metadata/v1/metadata.proto
package io.provenance.metadata.v1;
public interface RecordSpecIdInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:provenance.metadata.v1.RecordSpecIdInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* record_spec_id is the raw bytes of the record specification address.
*
*
* bytes record_spec_id = 1 [(.gogoproto.nullable) = false, (.gogoproto.customtype) = "MetadataAddress", (.gogoproto.moretags) = "yaml:\"record_spec_id\""];
*/
com.google.protobuf.ByteString getRecordSpecId();
/**
*
* record_spec_id_prefix is the prefix portion of the record_spec_id.
*
*
* bytes record_spec_id_prefix = 2 [(.gogoproto.moretags) = "yaml:\"record_spec_id_prefix\""];
*/
com.google.protobuf.ByteString getRecordSpecIdPrefix();
/**
*
* record_spec_id_contract_spec_uuid is the contract_spec_uuid portion of the record_spec_id.
*
*
* bytes record_spec_id_contract_spec_uuid = 3 [(.gogoproto.moretags) = "yaml:\"record_spec_id_contract_spec_uuid\""];
*/
com.google.protobuf.ByteString getRecordSpecIdContractSpecUuid();
/**
*
* record_spec_id_hashed_name is the hashed name portion of the record_spec_id.
*
*
* bytes record_spec_id_hashed_name = 4 [(.gogoproto.moretags) = "yaml:\"record_spec_id_hashed_name\""];
*/
com.google.protobuf.ByteString getRecordSpecIdHashedName();
/**
*
* record_spec_addr is the bech32 string version of the record_spec_id.
*
*
* string record_spec_addr = 5 [(.gogoproto.moretags) = "yaml:\"record_spec_addr\""];
*/
java.lang.String getRecordSpecAddr();
/**
*
* record_spec_addr is the bech32 string version of the record_spec_id.
*
*
* string record_spec_addr = 5 [(.gogoproto.moretags) = "yaml:\"record_spec_addr\""];
*/
com.google.protobuf.ByteString
getRecordSpecAddrBytes();
/**
*
* contract_spec_id_info is information about the contract spec id referenced in the record_spec_id.
*
*
* .provenance.metadata.v1.ContractSpecIdInfo contract_spec_id_info = 6 [(.gogoproto.moretags) = "yaml:\"contract_spec_id_info\""];
*/
boolean hasContractSpecIdInfo();
/**
*
* contract_spec_id_info is information about the contract spec id referenced in the record_spec_id.
*
*
* .provenance.metadata.v1.ContractSpecIdInfo contract_spec_id_info = 6 [(.gogoproto.moretags) = "yaml:\"contract_spec_id_info\""];
*/
io.provenance.metadata.v1.ContractSpecIdInfo getContractSpecIdInfo();
/**
*
* contract_spec_id_info is information about the contract spec id referenced in the record_spec_id.
*
*
* .provenance.metadata.v1.ContractSpecIdInfo contract_spec_id_info = 6 [(.gogoproto.moretags) = "yaml:\"contract_spec_id_info\""];
*/
io.provenance.metadata.v1.ContractSpecIdInfoOrBuilder getContractSpecIdInfoOrBuilder();
}