sawtooth.sdk.protobuf.TransactionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sawtooth-sdk-protos Show documentation
Show all versions of sawtooth-sdk-protos Show documentation
"Java classes generated from Sawtooth proto definition files, to interact with the component, consensus, and other validator interfaces"
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction.proto
package sawtooth.sdk.protobuf;
public interface TransactionOrBuilder extends
// @@protoc_insertion_point(interface_extends:Transaction)
com.google.protobuf.MessageOrBuilder {
/**
*
* The serialized version of the TransactionHeader
*
*
* bytes header = 1;
*/
com.google.protobuf.ByteString getHeader();
/**
*
* The signature derived from signing the header
*
*
* string header_signature = 2;
*/
java.lang.String getHeaderSignature();
/**
*
* The signature derived from signing the header
*
*
* string header_signature = 2;
*/
com.google.protobuf.ByteString
getHeaderSignatureBytes();
/**
*
* The payload is the encoded family specific information of the
* transaction. Example cbor({'Verb': verb, 'Name': name,'Value': value})
*
*
* bytes payload = 3;
*/
com.google.protobuf.ByteString getPayload();
}