com.hederahashgraph.api.proto.java.GrantedTokenAllowanceOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: get_account_details.proto
package com.hederahashgraph.api.proto.java;
public interface GrantedTokenAllowanceOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.GrantedTokenAllowance)
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.hederahashgraph.api.proto.java.TokenID getTokenId();
/**
*
**
* The token that the allowance pertains to.
*
*
* .proto.TokenID token_id = 1;
*/
com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokenIdOrBuilder();
/**
*
**
* The account ID of the token allowance spender.
*
*
* .proto.AccountID spender = 2;
* @return Whether the spender field is set.
*/
boolean hasSpender();
/**
*
**
* The account ID of the token allowance spender.
*
*
* .proto.AccountID spender = 2;
* @return The spender.
*/
com.hederahashgraph.api.proto.java.AccountID getSpender();
/**
*
**
* The account ID of the token allowance spender.
*
*
* .proto.AccountID spender = 2;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getSpenderOrBuilder();
/**
*
**
* The amount of the spender's token allowance.
*
*
* int64 amount = 3;
* @return The amount.
*/
long getAmount();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy