com.hedera.hashgraph.sdk.proto.SignedTransactionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_contents.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.hedera.hashgraph.sdk.proto.SignatureMap getSigMap();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 2;
*/
com.hedera.hashgraph.sdk.proto.SignatureMapOrBuilder getSigMapOrBuilder();
}