com.hederahashgraph.api.proto.java.NftTransferOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
package com.hederahashgraph.api.proto.java;
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.hederahashgraph.api.proto.java.AccountID getSenderAccountID();
/**
*
**
* The accountID of the sender
*
*
* .proto.AccountID senderAccountID = 1;
*/
com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.AccountID getReceiverAccountID();
/**
*
**
* The accountID of the receiver
*
*
* .proto.AccountID receiverAccountID = 2;
*/
com.hederahashgraph.api.proto.java.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();
}