com.hedera.hashgraph.sdk.proto.FeeScheduleOrBuilder 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: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface FeeScheduleOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.FeeSchedule)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* List of price coefficients for network resources
*
*
* repeated .proto.TransactionFeeSchedule transactionFeeSchedule = 1;
*/
java.util.List
getTransactionFeeScheduleList();
/**
*
**
* List of price coefficients for network resources
*
*
* repeated .proto.TransactionFeeSchedule transactionFeeSchedule = 1;
*/
com.hedera.hashgraph.sdk.proto.TransactionFeeSchedule getTransactionFeeSchedule(int index);
/**
*
**
* List of price coefficients for network resources
*
*
* repeated .proto.TransactionFeeSchedule transactionFeeSchedule = 1;
*/
int getTransactionFeeScheduleCount();
/**
*
**
* List of price coefficients for network resources
*
*
* repeated .proto.TransactionFeeSchedule transactionFeeSchedule = 1;
*/
java.util.List extends com.hedera.hashgraph.sdk.proto.TransactionFeeScheduleOrBuilder>
getTransactionFeeScheduleOrBuilderList();
/**
*
**
* List of price coefficients for network resources
*
*
* repeated .proto.TransactionFeeSchedule transactionFeeSchedule = 1;
*/
com.hedera.hashgraph.sdk.proto.TransactionFeeScheduleOrBuilder getTransactionFeeScheduleOrBuilder(
int index);
/**
*
**
* FeeSchedule expiry time
*
*
* .proto.TimestampSeconds expiryTime = 2;
* @return Whether the expiryTime field is set.
*/
boolean hasExpiryTime();
/**
*
**
* FeeSchedule expiry time
*
*
* .proto.TimestampSeconds expiryTime = 2;
* @return The expiryTime.
*/
com.hedera.hashgraph.sdk.proto.TimestampSeconds getExpiryTime();
/**
*
**
* FeeSchedule expiry time
*
*
* .proto.TimestampSeconds expiryTime = 2;
*/
com.hedera.hashgraph.sdk.proto.TimestampSecondsOrBuilder getExpiryTimeOrBuilder();
}