com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder 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 ExchangeRateOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ExchangeRate)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Denominator in calculation of exchange rate between hbar and cents
*
*
* int32 hbarEquiv = 1;
* @return The hbarEquiv.
*/
int getHbarEquiv();
/**
*
**
* Numerator in calculation of exchange rate between hbar and cents
*
*
* int32 centEquiv = 2;
* @return The centEquiv.
*/
int getCentEquiv();
/**
*
**
* Expiration time in seconds for this exchange rate
*
*
* .proto.TimestampSeconds expirationTime = 3;
* @return Whether the expirationTime field is set.
*/
boolean hasExpirationTime();
/**
*
**
* Expiration time in seconds for this exchange rate
*
*
* .proto.TimestampSeconds expirationTime = 3;
* @return The expirationTime.
*/
com.hederahashgraph.api.proto.java.TimestampSeconds getExpirationTime();
/**
*
**
* Expiration time in seconds for this exchange rate
*
*
* .proto.TimestampSeconds expirationTime = 3;
*/
com.hederahashgraph.api.proto.java.TimestampSecondsOrBuilder getExpirationTimeOrBuilder();
}