All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hedera.hashgraph.sdk.proto.AccountAmountOrBuilder Maven / Gradle / Ivy

There is a newer version: 2.40.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: basic_types.proto

// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;

public interface AccountAmountOrBuilder extends
    // @@protoc_insertion_point(interface_extends:proto.AccountAmount)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   **
   * The Account ID that sends/receives cryptocurrency or tokens
   * 
* * .proto.AccountID accountID = 1; * @return Whether the accountID field is set. */ boolean hasAccountID(); /** *
   **
   * The Account ID that sends/receives cryptocurrency or tokens
   * 
* * .proto.AccountID accountID = 1; * @return The accountID. */ com.hedera.hashgraph.sdk.proto.AccountID getAccountID(); /** *
   **
   * The Account ID that sends/receives cryptocurrency or tokens
   * 
* * .proto.AccountID accountID = 1; */ com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder(); /** *
   **
   * The amount of tinybars (for Crypto transfers) or in the lowest
   * denomination (for Token transfers) that the account sends(negative) or
   * receives(positive)
   * 
* * sint64 amount = 2; * @return The amount. */ long getAmount(); /** *
   **
   * If true then the transfer is expected to be an approved allowance and the
   * accountID is expected to be the owner. The default is false (omitted).
   * 
* * bool is_approval = 3; * @return The isApproval. */ boolean getIsApproval(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy