com.hedera.hashgraph.sdk.proto.TransactionOrBuilder 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
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TransactionOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.Transaction)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The body of the transaction, which needs to be signed
*
*
* .proto.TransactionBody body = 1 [deprecated = true];
* @deprecated proto.Transaction.body is deprecated.
* See transaction.proto;l=44
* @return Whether the body field is set.
*/
@java.lang.Deprecated boolean hasBody();
/**
*
**
* The body of the transaction, which needs to be signed
*
*
* .proto.TransactionBody body = 1 [deprecated = true];
* @deprecated proto.Transaction.body is deprecated.
* See transaction.proto;l=44
* @return The body.
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.TransactionBody getBody();
/**
*
**
* The body of the transaction, which needs to be signed
*
*
* .proto.TransactionBody body = 1 [deprecated = true];
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.TransactionBodyOrBuilder getBodyOrBuilder();
/**
*
**
* The signatures on the body, to authorize the transaction; deprecated and to be succeeded by
* SignatureMap field
*
*
* .proto.SignatureList sigs = 2 [deprecated = true];
* @deprecated proto.Transaction.sigs is deprecated.
* See transaction.proto;l=50
* @return Whether the sigs field is set.
*/
@java.lang.Deprecated boolean hasSigs();
/**
*
**
* The signatures on the body, to authorize the transaction; deprecated and to be succeeded by
* SignatureMap field
*
*
* .proto.SignatureList sigs = 2 [deprecated = true];
* @deprecated proto.Transaction.sigs is deprecated.
* See transaction.proto;l=50
* @return The sigs.
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.SignatureList getSigs();
/**
*
**
* The signatures on the body, to authorize the transaction; deprecated and to be succeeded by
* SignatureMap field
*
*
* .proto.SignatureList sigs = 2 [deprecated = true];
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.SignatureListOrBuilder getSigsOrBuilder();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 3 [deprecated = true];
* @deprecated proto.Transaction.sigMap is deprecated.
* See transaction.proto;l=55
* @return Whether the sigMap field is set.
*/
@java.lang.Deprecated boolean hasSigMap();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 3 [deprecated = true];
* @deprecated proto.Transaction.sigMap is deprecated.
* See transaction.proto;l=55
* @return The sigMap.
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.SignatureMap getSigMap();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 3 [deprecated = true];
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.SignatureMapOrBuilder getSigMapOrBuilder();
/**
*
**
* TransactionBody serialized into bytes, which needs to be signed
*
*
* bytes bodyBytes = 4 [deprecated = true];
* @deprecated proto.Transaction.bodyBytes is deprecated.
* See transaction.proto;l=60
* @return The bodyBytes.
*/
@java.lang.Deprecated com.google.protobuf.ByteString getBodyBytes();
/**
*
**
* SignedTransaction serialized into bytes
*
*
* bytes signedTransactionBytes = 5;
* @return The signedTransactionBytes.
*/
com.google.protobuf.ByteString getSignedTransactionBytes();
}