com.hederahashgraph.api.proto.java.SignedTransactionOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_contents.proto
package com.hederahashgraph.api.proto.java;
public interface SignedTransactionOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.SignedTransaction)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* TransactionBody serialized into bytes, which needs to be signed
*
*
* bytes bodyBytes = 1;
* @return The bodyBytes.
*/
com.google.protobuf.ByteString getBodyBytes();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 2;
* @return Whether the sigMap field is set.
*/
boolean hasSigMap();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 2;
* @return The sigMap.
*/
com.hederahashgraph.api.proto.java.SignatureMap getSigMap();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 2;
*/
com.hederahashgraph.api.proto.java.SignatureMapOrBuilder getSigMapOrBuilder();
}