com.hedera.hashgraph.sdk.proto.TokenReferenceOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_reject.proto
package com.hedera.hashgraph.sdk.proto;
public interface TokenReferenceOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenReference)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* A fungible/common token type.
*
*
* .proto.TokenID fungible_token = 1;
* @return Whether the fungibleToken field is set.
*/
boolean hasFungibleToken();
/**
*
**
* A fungible/common token type.
*
*
* .proto.TokenID fungible_token = 1;
* @return The fungibleToken.
*/
com.hedera.hashgraph.sdk.proto.TokenID getFungibleToken();
/**
*
**
* A single specific serialized non-fungible/unique token.
*
*
* .proto.NftID nft = 2;
* @return Whether the nft field is set.
*/
boolean hasNft();
/**
*
**
* A single specific serialized non-fungible/unique token.
*
*
* .proto.NftID nft = 2;
* @return The nft.
*/
com.hedera.hashgraph.sdk.proto.NftID getNft();
public com.hedera.hashgraph.sdk.proto.TokenReference.TokenIdentifierCase getTokenIdentifierCase();
}