com.hedera.hashgraph.sdk.proto.NftRemoveAllowanceOrBuilder 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: crypto_delete_allowance.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface NftRemoveAllowanceOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.NftRemoveAllowance)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The token that the allowance pertains to.
*
*
* .proto.TokenID token_id = 1;
* @return Whether the tokenId field is set.
*/
boolean hasTokenId();
/**
*
**
* The token that the allowance pertains to.
*
*
* .proto.TokenID token_id = 1;
* @return The tokenId.
*/
com.hedera.hashgraph.sdk.proto.TokenID getTokenId();
/**
*
**
* The token that the allowance pertains to.
*
*
* .proto.TokenID token_id = 1;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenIdOrBuilder();
/**
*
**
* The account ID of the token owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 2;
* @return Whether the owner field is set.
*/
boolean hasOwner();
/**
*
**
* The account ID of the token owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 2;
* @return The owner.
*/
com.hedera.hashgraph.sdk.proto.AccountID getOwner();
/**
*
**
* The account ID of the token owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 2;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getOwnerOrBuilder();
/**
*
**
* The list of serial numbers to remove allowances from.
*
*
* repeated int64 serial_numbers = 3;
* @return A list containing the serialNumbers.
*/
java.util.List getSerialNumbersList();
/**
*
**
* The list of serial numbers to remove allowances from.
*
*
* repeated int64 serial_numbers = 3;
* @return The count of serialNumbers.
*/
int getSerialNumbersCount();
/**
*
**
* The list of serial numbers to remove allowances from.
*
*
* repeated int64 serial_numbers = 3;
* @param index The index of the element to return.
* @return The serialNumbers at the given index.
*/
long getSerialNumbers(int index);
}