com.hedera.hashgraph.sdk.proto.NftTransferOrBuilder 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
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface NftTransferOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.NftTransfer)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The accountID of the sender
*
*
* .proto.AccountID senderAccountID = 1;
* @return Whether the senderAccountID field is set.
*/
boolean hasSenderAccountID();
/**
*
**
* The accountID of the sender
*
*
* .proto.AccountID senderAccountID = 1;
* @return The senderAccountID.
*/
com.hedera.hashgraph.sdk.proto.AccountID getSenderAccountID();
/**
*
**
* The accountID of the sender
*
*
* .proto.AccountID senderAccountID = 1;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getSenderAccountIDOrBuilder();
/**
*
**
* The accountID of the receiver
*
*
* .proto.AccountID receiverAccountID = 2;
* @return Whether the receiverAccountID field is set.
*/
boolean hasReceiverAccountID();
/**
*
**
* The accountID of the receiver
*
*
* .proto.AccountID receiverAccountID = 2;
* @return The receiverAccountID.
*/
com.hedera.hashgraph.sdk.proto.AccountID getReceiverAccountID();
/**
*
**
* The accountID of the receiver
*
*
* .proto.AccountID receiverAccountID = 2;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getReceiverAccountIDOrBuilder();
/**
*
**
* The serial number of the NFT
*
*
* int64 serialNumber = 3;
* @return The serialNumber.
*/
long getSerialNumber();
/**
*
**
* If true then the transfer is expected to be an approved allowance and the
* senderAccountID is expected to be the owner. The default is false (omitted).
*
*
* bool is_approval = 4;
* @return The isApproval.
*/
boolean getIsApproval();
}