com.hedera.hashgraph.sdk.proto.TokenFeeScheduleUpdateTransactionBodyOrBuilder 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: token_fee_schedule_update.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TokenFeeScheduleUpdateTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenFeeScheduleUpdateTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The token whose fee schedule is to be updated
*
*
* .proto.TokenID token_id = 1;
* @return Whether the tokenId field is set.
*/
boolean hasTokenId();
/**
*
**
* The token whose fee schedule is to be updated
*
*
* .proto.TokenID token_id = 1;
* @return The tokenId.
*/
com.hedera.hashgraph.sdk.proto.TokenID getTokenId();
/**
*
**
* The token whose fee schedule is to be updated
*
*
* .proto.TokenID token_id = 1;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenIdOrBuilder();
/**
*
**
* The new custom fees to be assessed during a CryptoTransfer that transfers units of this token
*
*
* repeated .proto.CustomFee custom_fees = 2;
*/
java.util.List
getCustomFeesList();
/**
*
**
* The new custom fees to be assessed during a CryptoTransfer that transfers units of this token
*
*
* repeated .proto.CustomFee custom_fees = 2;
*/
com.hedera.hashgraph.sdk.proto.CustomFee getCustomFees(int index);
/**
*
**
* The new custom fees to be assessed during a CryptoTransfer that transfers units of this token
*
*
* repeated .proto.CustomFee custom_fees = 2;
*/
int getCustomFeesCount();
/**
*
**
* The new custom fees to be assessed during a CryptoTransfer that transfers units of this token
*
*
* repeated .proto.CustomFee custom_fees = 2;
*/
java.util.List extends com.hedera.hashgraph.sdk.proto.CustomFeeOrBuilder>
getCustomFeesOrBuilderList();
/**
*
**
* The new custom fees to be assessed during a CryptoTransfer that transfers units of this token
*
*
* repeated .proto.CustomFee custom_fees = 2;
*/
com.hedera.hashgraph.sdk.proto.CustomFeeOrBuilder getCustomFeesOrBuilder(
int index);
}