com.hedera.hashgraph.sdk.proto.ContractNonceInfoOrBuilder 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: contract_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ContractNonceInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractNonceInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
* @return Whether the contractId field is set.
*/
boolean hasContractId();
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
* @return The contractId.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractId();
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIdOrBuilder();
/**
*
**
* The current value of the contract account's nonce property
*
*
* int64 nonce = 2;
* @return The nonce.
*/
long getNonce();
}