com.hedera.hashgraph.sdk.proto.ExchangeRateOrBuilder 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: exchange_rate.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.hedera.hashgraph.sdk.proto.TimestampSeconds getExpirationTime();
/**
*
**
* Expiration time in seconds for this exchange rate
*
*
* .proto.TimestampSeconds expirationTime = 3;
*/
com.hedera.hashgraph.sdk.proto.TimestampSecondsOrBuilder getExpirationTimeOrBuilder();
}