com.hedera.hashgraph.sdk.proto.FractionOrBuilder 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 FractionOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.Fraction)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The rational's numerator
*
*
* int64 numerator = 1;
* @return The numerator.
*/
long getNumerator();
/**
*
**
* The rational's denominator; a zero value will result in FRACTION_DIVIDES_BY_ZERO
*
*
* int64 denominator = 2;
* @return The denominator.
*/
long getDenominator();
}