com.hedera.hashgraph.sdk.proto.CryptoTransferTransactionBodyOrBuilder 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: crypto_transfer.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface CryptoTransferTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.CryptoTransferTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The desired hbar balance adjustments
*
*
* .proto.TransferList transfers = 1;
* @return Whether the transfers field is set.
*/
boolean hasTransfers();
/**
*
**
* The desired hbar balance adjustments
*
*
* .proto.TransferList transfers = 1;
* @return The transfers.
*/
com.hedera.hashgraph.sdk.proto.TransferList getTransfers();
/**
*
**
* The desired hbar balance adjustments
*
*
* .proto.TransferList transfers = 1;
*/
com.hedera.hashgraph.sdk.proto.TransferListOrBuilder getTransfersOrBuilder();
/**
*
**
* The desired token unit balance adjustments; if any custom fees are assessed, the ledger will
* try to deduct them from the payer of this CryptoTransfer, resolving the transaction to
* INSUFFICIENT_PAYER_BALANCE_FOR_CUSTOM_FEE if this is not possible
*
*
* repeated .proto.TokenTransferList tokenTransfers = 2;
*/
java.util.List
getTokenTransfersList();
/**
*
**
* The desired token unit balance adjustments; if any custom fees are assessed, the ledger will
* try to deduct them from the payer of this CryptoTransfer, resolving the transaction to
* INSUFFICIENT_PAYER_BALANCE_FOR_CUSTOM_FEE if this is not possible
*
*
* repeated .proto.TokenTransferList tokenTransfers = 2;
*/
com.hedera.hashgraph.sdk.proto.TokenTransferList getTokenTransfers(int index);
/**
*
**
* The desired token unit balance adjustments; if any custom fees are assessed, the ledger will
* try to deduct them from the payer of this CryptoTransfer, resolving the transaction to
* INSUFFICIENT_PAYER_BALANCE_FOR_CUSTOM_FEE if this is not possible
*
*
* repeated .proto.TokenTransferList tokenTransfers = 2;
*/
int getTokenTransfersCount();
/**
*
**
* The desired token unit balance adjustments; if any custom fees are assessed, the ledger will
* try to deduct them from the payer of this CryptoTransfer, resolving the transaction to
* INSUFFICIENT_PAYER_BALANCE_FOR_CUSTOM_FEE if this is not possible
*
*
* repeated .proto.TokenTransferList tokenTransfers = 2;
*/
java.util.List extends com.hedera.hashgraph.sdk.proto.TokenTransferListOrBuilder>
getTokenTransfersOrBuilderList();
/**
*
**
* The desired token unit balance adjustments; if any custom fees are assessed, the ledger will
* try to deduct them from the payer of this CryptoTransfer, resolving the transaction to
* INSUFFICIENT_PAYER_BALANCE_FOR_CUSTOM_FEE if this is not possible
*
*
* repeated .proto.TokenTransferList tokenTransfers = 2;
*/
com.hedera.hashgraph.sdk.proto.TokenTransferListOrBuilder getTokenTransfersOrBuilder(
int index);
}