com.hedera.hashgraph.sdk.proto.ThrottleUsageSnapshotOrBuilder 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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: throttle_usage_snapshots.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ThrottleUsageSnapshotOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ThrottleUsageSnapshot)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Used throttle capacity.
*
*
* int64 used = 1;
* @return The used.
*/
long getUsed();
/**
*
**
* The last time at which the capacity was updated.
*
*
* .proto.Timestamp last_decision_time = 2;
* @return Whether the lastDecisionTime field is set.
*/
boolean hasLastDecisionTime();
/**
*
**
* The last time at which the capacity was updated.
*
*
* .proto.Timestamp last_decision_time = 2;
* @return The lastDecisionTime.
*/
com.hedera.hashgraph.sdk.proto.Timestamp getLastDecisionTime();
/**
*
**
* The last time at which the capacity was updated.
*
*
* .proto.Timestamp last_decision_time = 2;
*/
com.hedera.hashgraph.sdk.proto.TimestampOrBuilder getLastDecisionTimeOrBuilder();
}