com.hedera.hashgraph.sdk.proto.ContractCallTransactionBodyOrBuilder 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_call.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ContractCallTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractCallTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The contract to call
*
*
* .proto.ContractID contractID = 1;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* The contract to call
*
*
* .proto.ContractID contractID = 1;
* @return The contractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractID();
/**
*
**
* The contract to call
*
*
* .proto.ContractID contractID = 1;
*/
com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder();
/**
*
**
* the maximum amount of gas to use for the call
*
*
* int64 gas = 2;
* @return The gas.
*/
long getGas();
/**
*
**
* number of tinybars sent (the function must be payable if this is nonzero)
*
*
* int64 amount = 3;
* @return The amount.
*/
long getAmount();
/**
*
**
* which function to call, and the parameters to pass to the function
*
*
* bytes functionParameters = 4;
* @return The functionParameters.
*/
com.google.protobuf.ByteString getFunctionParameters();
}