com.hederahashgraph.api.proto.java.RoyaltyFeeOrBuilder 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 RoyaltyFeeOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.RoyaltyFee)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The fraction of fungible value exchanged for an NFT to collect as royalty
*
*
* .proto.Fraction exchange_value_fraction = 1;
* @return Whether the exchangeValueFraction field is set.
*/
boolean hasExchangeValueFraction();
/**
*
**
* The fraction of fungible value exchanged for an NFT to collect as royalty
*
*
* .proto.Fraction exchange_value_fraction = 1;
* @return The exchangeValueFraction.
*/
com.hederahashgraph.api.proto.java.Fraction getExchangeValueFraction();
/**
*
**
* The fraction of fungible value exchanged for an NFT to collect as royalty
*
*
* .proto.Fraction exchange_value_fraction = 1;
*/
com.hederahashgraph.api.proto.java.FractionOrBuilder getExchangeValueFractionOrBuilder();
/**
*
**
* If present, the fixed fee to assess to the NFT receiver when no fungible value is exchanged
* with the sender
*
*
* .proto.FixedFee fallback_fee = 2;
* @return Whether the fallbackFee field is set.
*/
boolean hasFallbackFee();
/**
*
**
* If present, the fixed fee to assess to the NFT receiver when no fungible value is exchanged
* with the sender
*
*
* .proto.FixedFee fallback_fee = 2;
* @return The fallbackFee.
*/
com.hederahashgraph.api.proto.java.FixedFee getFallbackFee();
/**
*
**
* If present, the fixed fee to assess to the NFT receiver when no fungible value is exchanged
* with the sender
*
*
* .proto.FixedFee fallback_fee = 2;
*/
com.hederahashgraph.api.proto.java.FixedFeeOrBuilder getFallbackFeeOrBuilder();
}