com.hederahashgraph.api.proto.java.FixedFeeOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: custom_fees.proto
package com.hederahashgraph.api.proto.java;
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.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.TokenIDOrBuilder getDenominatingTokenIdOrBuilder();
}