com.hedera.hashgraph.sdk.proto.CurrentAndNextFeeScheduleOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
package com.hedera.hashgraph.sdk.proto;
public interface CurrentAndNextFeeScheduleOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.CurrentAndNextFeeSchedule)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* 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 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();
}