com.hedera.hashgraph.sdk.proto.AccountPendingAirdropOrBuilder 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: account_pending_airdrop.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface AccountPendingAirdropOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.AccountPendingAirdrop)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The value of the current airdrop id. SHALL NOT be set for non fungible tokens
*
*
* .proto.PendingAirdropValue pending_airdrop_value = 1;
* @return Whether the pendingAirdropValue field is set.
*/
boolean hasPendingAirdropValue();
/**
*
**
* The value of the current airdrop id. SHALL NOT be set for non fungible tokens
*
*
* .proto.PendingAirdropValue pending_airdrop_value = 1;
* @return The pendingAirdropValue.
*/
com.hedera.hashgraph.sdk.proto.PendingAirdropValue getPendingAirdropValue();
/**
*
**
* The value of the current airdrop id. SHALL NOT be set for non fungible tokens
*
*
* .proto.PendingAirdropValue pending_airdrop_value = 1;
*/
com.hedera.hashgraph.sdk.proto.PendingAirdropValueOrBuilder getPendingAirdropValueOrBuilder();
/**
*
**
* A pending airdrop identifier.<br/>
* This identifies the specific pending airdrop that precedes this position
* within the doubly linked list of pending airdrops "owed" by the sending
* account associated with this account airdrop "list".
* <p>
* This SHALL match `pending_airdrop_id` if this is the only entry
* in the "list".
*
*
* .proto.PendingAirdropId previous_airdrop = 2;
* @return Whether the previousAirdrop field is set.
*/
boolean hasPreviousAirdrop();
/**
*
**
* A pending airdrop identifier.<br/>
* This identifies the specific pending airdrop that precedes this position
* within the doubly linked list of pending airdrops "owed" by the sending
* account associated with this account airdrop "list".
* <p>
* This SHALL match `pending_airdrop_id` if this is the only entry
* in the "list".
*
*
* .proto.PendingAirdropId previous_airdrop = 2;
* @return The previousAirdrop.
*/
com.hedera.hashgraph.sdk.proto.PendingAirdropId getPreviousAirdrop();
/**
*
**
* A pending airdrop identifier.<br/>
* This identifies the specific pending airdrop that precedes this position
* within the doubly linked list of pending airdrops "owed" by the sending
* account associated with this account airdrop "list".
* <p>
* This SHALL match `pending_airdrop_id` if this is the only entry
* in the "list".
*
*
* .proto.PendingAirdropId previous_airdrop = 2;
*/
com.hedera.hashgraph.sdk.proto.PendingAirdropIdOrBuilder getPreviousAirdropOrBuilder();
/**
*
**
* A pending airdrop identifier.<br/>
* This identifies the specific pending airdrop that follows this position
* within the doubly linked list of pending airdrops "owed" by the sending
* account associated with this account airdrop "list".
* <p>
* This SHALL match `pending_airdrop_id` if this is the only entry
* in the "list".
*
*
* .proto.PendingAirdropId next_airdrop = 3;
* @return Whether the nextAirdrop field is set.
*/
boolean hasNextAirdrop();
/**
*
**
* A pending airdrop identifier.<br/>
* This identifies the specific pending airdrop that follows this position
* within the doubly linked list of pending airdrops "owed" by the sending
* account associated with this account airdrop "list".
* <p>
* This SHALL match `pending_airdrop_id` if this is the only entry
* in the "list".
*
*
* .proto.PendingAirdropId next_airdrop = 3;
* @return The nextAirdrop.
*/
com.hedera.hashgraph.sdk.proto.PendingAirdropId getNextAirdrop();
/**
*
**
* A pending airdrop identifier.<br/>
* This identifies the specific pending airdrop that follows this position
* within the doubly linked list of pending airdrops "owed" by the sending
* account associated with this account airdrop "list".
* <p>
* This SHALL match `pending_airdrop_id` if this is the only entry
* in the "list".
*
*
* .proto.PendingAirdropId next_airdrop = 3;
*/
com.hedera.hashgraph.sdk.proto.PendingAirdropIdOrBuilder getNextAirdropOrBuilder();
}