com.hedera.hashgraph.sdk.proto.CurrentAndNextFeeScheduleOrBuilder 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: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface CurrentAndNextFeeScheduleOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.CurrentAndNextFeeSchedule)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Contains current Fee Schedule
*
*
* .proto.FeeSchedule currentFeeSchedule = 1;
* @return Whether the currentFeeSchedule field is set.
*/
boolean hasCurrentFeeSchedule();
/**
*
**
* Contains current Fee Schedule
*
*
* .proto.FeeSchedule currentFeeSchedule = 1;
* @return The currentFeeSchedule.
*/
com.hedera.hashgraph.sdk.proto.FeeSchedule getCurrentFeeSchedule();
/**
*
**
* Contains current Fee Schedule
*
*
* .proto.FeeSchedule currentFeeSchedule = 1;
*/
com.hedera.hashgraph.sdk.proto.FeeScheduleOrBuilder getCurrentFeeScheduleOrBuilder();
/**
*
**
* Contains next Fee Schedule
*
*
* .proto.FeeSchedule nextFeeSchedule = 2;
* @return Whether the nextFeeSchedule field is set.
*/
boolean hasNextFeeSchedule();
/**
*
**
* Contains next Fee Schedule
*
*
* .proto.FeeSchedule nextFeeSchedule = 2;
* @return The nextFeeSchedule.
*/
com.hedera.hashgraph.sdk.proto.FeeSchedule getNextFeeSchedule();
/**
*
**
* Contains next Fee Schedule
*
*
* .proto.FeeSchedule nextFeeSchedule = 2;
*/
com.hedera.hashgraph.sdk.proto.FeeScheduleOrBuilder getNextFeeScheduleOrBuilder();
}