io.provenance.metadata.v1.MsgWriteRecordSpecificationRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/metadata/v1/tx.proto
package io.provenance.metadata.v1;
public interface MsgWriteRecordSpecificationRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:provenance.metadata.v1.MsgWriteRecordSpecificationRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* specification is the RecordSpecification you want added or updated.
*
*
* .provenance.metadata.v1.RecordSpecification specification = 1 [(.gogoproto.nullable) = false];
*/
boolean hasSpecification();
/**
*
* specification is the RecordSpecification you want added or updated.
*
*
* .provenance.metadata.v1.RecordSpecification specification = 1 [(.gogoproto.nullable) = false];
*/
io.provenance.metadata.v1.RecordSpecification getSpecification();
/**
*
* specification is the RecordSpecification you want added or updated.
*
*
* .provenance.metadata.v1.RecordSpecification specification = 1 [(.gogoproto.nullable) = false];
*/
io.provenance.metadata.v1.RecordSpecificationOrBuilder getSpecificationOrBuilder();
/**
*
* signers is the list of address of those signing this request.
*
*
* repeated string signers = 2;
*/
java.util.List
getSignersList();
/**
*
* signers is the list of address of those signing this request.
*
*
* repeated string signers = 2;
*/
int getSignersCount();
/**
*
* signers is the list of address of those signing this request.
*
*
* repeated string signers = 2;
*/
java.lang.String getSigners(int index);
/**
*
* signers is the list of address of those signing this request.
*
*
* repeated string signers = 2;
*/
com.google.protobuf.ByteString
getSignersBytes(int index);
/**
*
* contract_spec_uuid is an optional contract specification uuid string, e.g. "def6bc0a-c9dd-4874-948f-5206e6060a84"
* If provided, it will be combined with the record specification name to generate the MetadataAddress for the record
* specification which will override the specification_id in the provided specification. If not provided (or it is an
* empty string), nothing special happens.
* If there is a value in specification.specification_id that is different from the one created from this uuid and
* specification.name, an error is returned.
*
*
* string contract_spec_uuid = 3 [(.gogoproto.moretags) = "yaml:\"contract_spec_uuid\""];
*/
java.lang.String getContractSpecUuid();
/**
*
* contract_spec_uuid is an optional contract specification uuid string, e.g. "def6bc0a-c9dd-4874-948f-5206e6060a84"
* If provided, it will be combined with the record specification name to generate the MetadataAddress for the record
* specification which will override the specification_id in the provided specification. If not provided (or it is an
* empty string), nothing special happens.
* If there is a value in specification.specification_id that is different from the one created from this uuid and
* specification.name, an error is returned.
*
*
* string contract_spec_uuid = 3 [(.gogoproto.moretags) = "yaml:\"contract_spec_uuid\""];
*/
com.google.protobuf.ByteString
getContractSpecUuidBytes();
}