com.hedera.hashgraph.sdk.proto.TokenUpdateNftsTransactionBodyOrBuilder 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: token_update_nfts.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TokenUpdateNftsTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenUpdateNftsTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The token for which to update NFTs.
*
*
* .proto.TokenID token = 1;
* @return Whether the token field is set.
*/
boolean hasToken();
/**
*
**
* The token for which to update NFTs.
*
*
* .proto.TokenID token = 1;
* @return The token.
*/
com.hedera.hashgraph.sdk.proto.TokenID getToken();
/**
*
**
* The token for which to update NFTs.
*
*
* .proto.TokenID token = 1;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenOrBuilder();
/**
*
**
* The list of serial numbers to be updated.
*
*
* repeated int64 serial_numbers = 2;
* @return A list containing the serialNumbers.
*/
java.util.List getSerialNumbersList();
/**
*
**
* The list of serial numbers to be updated.
*
*
* repeated int64 serial_numbers = 2;
* @return The count of serialNumbers.
*/
int getSerialNumbersCount();
/**
*
**
* The list of serial numbers to be updated.
*
*
* repeated int64 serial_numbers = 2;
* @param index The index of the element to return.
* @return The serialNumbers at the given index.
*/
long getSerialNumbers(int index);
/**
*
**
* The new metadata of the NFT(s)
*
*
* .google.protobuf.BytesValue metadata = 3;
* @return Whether the metadata field is set.
*/
boolean hasMetadata();
/**
*
**
* The new metadata of the NFT(s)
*
*
* .google.protobuf.BytesValue metadata = 3;
* @return The metadata.
*/
com.google.protobuf.BytesValue getMetadata();
/**
*
**
* The new metadata of the NFT(s)
*
*
* .google.protobuf.BytesValue metadata = 3;
*/
com.google.protobuf.BytesValueOrBuilder getMetadataOrBuilder();
}