com.hedera.hashgraph.sdk.proto.FixedFeeOrBuilder 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: custom_fees.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface FixedFeeOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.FixedFee)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The number of units to assess as a fee
*
*
* int64 amount = 1;
* @return The amount.
*/
long getAmount();
/**
*
**
* The denomination of the fee; taken as hbar if left unset and, in a TokenCreate, taken as the id
* of the newly created token if set to the sentinel value of 0.0.0
*
*
* .proto.TokenID denominating_token_id = 2;
* @return Whether the denominatingTokenId field is set.
*/
boolean hasDenominatingTokenId();
/**
*
**
* The denomination of the fee; taken as hbar if left unset and, in a TokenCreate, taken as the id
* of the newly created token if set to the sentinel value of 0.0.0
*
*
* .proto.TokenID denominating_token_id = 2;
* @return The denominatingTokenId.
*/
com.hedera.hashgraph.sdk.proto.TokenID getDenominatingTokenId();
/**
*
**
* The denomination of the fee; taken as hbar if left unset and, in a TokenCreate, taken as the id
* of the newly created token if set to the sentinel value of 0.0.0
*
*
* .proto.TokenID denominating_token_id = 2;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getDenominatingTokenIdOrBuilder();
}