com.hederahashgraph.api.proto.java.ExchangeRateSetOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: exchange_rate.proto
package com.hederahashgraph.api.proto.java;
public interface ExchangeRateSetOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ExchangeRateSet)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Current exchange rate
*
*
* .proto.ExchangeRate currentRate = 1;
* @return Whether the currentRate field is set.
*/
boolean hasCurrentRate();
/**
*
**
* Current exchange rate
*
*
* .proto.ExchangeRate currentRate = 1;
* @return The currentRate.
*/
com.hederahashgraph.api.proto.java.ExchangeRate getCurrentRate();
/**
*
**
* Current exchange rate
*
*
* .proto.ExchangeRate currentRate = 1;
*/
com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder getCurrentRateOrBuilder();
/**
*
**
* Next exchange rate which will take effect when current rate expires
*
*
* .proto.ExchangeRate nextRate = 2;
* @return Whether the nextRate field is set.
*/
boolean hasNextRate();
/**
*
**
* Next exchange rate which will take effect when current rate expires
*
*
* .proto.ExchangeRate nextRate = 2;
* @return The nextRate.
*/
com.hederahashgraph.api.proto.java.ExchangeRate getNextRate();
/**
*
**
* Next exchange rate which will take effect when current rate expires
*
*
* .proto.ExchangeRate nextRate = 2;
*/
com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder getNextRateOrBuilder();
}