Record Class Account

java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.gql.Account

public record Account(String id, Integer acc_type, AccountStatusEnum acc_type_name, String balance, List<OtherCurrency> balance_other, String bits, String boc, String cells, String code, String code_hash, String data, String data_hash, String due_payment, String init_code_hash, Float last_paid, String last_trans_lt, String library, String library_hash, String prev_code_hash, String proof, String public_cells, Integer split_depth, String state_hash, Boolean tick, Boolean tock, Integer workchain_id) extends Record
# Account type Recall that a smart contract and an account are the same thing in the context of the TON Blockchain, and that these terms can be used interchangeably, at least as long as only small (or “usual”) smart contracts are considered. A large smart-contract may employ several accounts lying in different shardchains of the same workchain for load balancing purposes. An account is identified by its full address and is completely described by its state. In other words, there is nothing else in an account apart from its address and state.;