com.hederahashgraph.api.proto.java.AccountFungibleTokenAllowanceOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: state/token/account.proto
package com.hederahashgraph.api.proto.java;
public interface AccountFungibleTokenAllowanceOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.AccountFungibleTokenAllowance)
com.google.protobuf.MessageOrBuilder {
/**
* .proto.TokenID token_id = 1;
* @return Whether the tokenId field is set.
*/
boolean hasTokenId();
/**
* .proto.TokenID token_id = 1;
* @return The tokenId.
*/
com.hederahashgraph.api.proto.java.TokenID getTokenId();
/**
* .proto.TokenID token_id = 1;
*/
com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokenIdOrBuilder();
/**
* .proto.AccountID spender_id = 2;
* @return Whether the spenderId field is set.
*/
boolean hasSpenderId();
/**
* .proto.AccountID spender_id = 2;
* @return The spenderId.
*/
com.hederahashgraph.api.proto.java.AccountID getSpenderId();
/**
* .proto.AccountID spender_id = 2;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getSpenderIdOrBuilder();
/**
* int64 amount = 3;
* @return The amount.
*/
long getAmount();
}