com.hedera.hashgraph.sdk.proto.RoyaltyFeeOrBuilder 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 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.hedera.hashgraph.sdk.proto.Fraction getExchangeValueFraction();
/**
*
**
* The fraction of fungible value exchanged for an NFT to collect as royalty
*
*
* .proto.Fraction exchange_value_fraction = 1;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.FixedFeeOrBuilder getFallbackFeeOrBuilder();
}