com.hedera.hashgraph.sdk.proto.AssessedCustomFeeOrBuilder 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: custom_fees.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface AssessedCustomFeeOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.AssessedCustomFee)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The number of units assessed for the fee
*
*
* int64 amount = 1;
* @return The amount.
*/
long getAmount();
/**
*
**
* The denomination of the fee; taken as hbar if left unset
*
*
* .proto.TokenID token_id = 2;
* @return Whether the tokenId field is set.
*/
boolean hasTokenId();
/**
*
**
* The denomination of the fee; taken as hbar if left unset
*
*
* .proto.TokenID token_id = 2;
* @return The tokenId.
*/
com.hedera.hashgraph.sdk.proto.TokenID getTokenId();
/**
*
**
* The denomination of the fee; taken as hbar if left unset
*
*
* .proto.TokenID token_id = 2;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenIdOrBuilder();
/**
*
**
* The account to receive the assessed fee
*
*
* .proto.AccountID fee_collector_account_id = 3;
* @return Whether the feeCollectorAccountId field is set.
*/
boolean hasFeeCollectorAccountId();
/**
*
**
* The account to receive the assessed fee
*
*
* .proto.AccountID fee_collector_account_id = 3;
* @return The feeCollectorAccountId.
*/
com.hedera.hashgraph.sdk.proto.AccountID getFeeCollectorAccountId();
/**
*
**
* The account to receive the assessed fee
*
*
* .proto.AccountID fee_collector_account_id = 3;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getFeeCollectorAccountIdOrBuilder();
/**
*
**
* The account(s) whose final balances would have been higher in the absence of this assessed fee
*
*
* repeated .proto.AccountID effective_payer_account_id = 4;
*/
java.util.List
getEffectivePayerAccountIdList();
/**
*
**
* The account(s) whose final balances would have been higher in the absence of this assessed fee
*
*
* repeated .proto.AccountID effective_payer_account_id = 4;
*/
com.hedera.hashgraph.sdk.proto.AccountID getEffectivePayerAccountId(int index);
/**
*
**
* The account(s) whose final balances would have been higher in the absence of this assessed fee
*
*
* repeated .proto.AccountID effective_payer_account_id = 4;
*/
int getEffectivePayerAccountIdCount();
/**
*
**
* The account(s) whose final balances would have been higher in the absence of this assessed fee
*
*
* repeated .proto.AccountID effective_payer_account_id = 4;
*/
java.util.List extends com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder>
getEffectivePayerAccountIdOrBuilderList();
/**
*
**
* The account(s) whose final balances would have been higher in the absence of this assessed fee
*
*
* repeated .proto.AccountID effective_payer_account_id = 4;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getEffectivePayerAccountIdOrBuilder(
int index);
}