![JAR search and dependency download from the Maven repository](/logo.png)
io.blockfrost.sdk.api.model.AddressTotal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blockfrost-java Show documentation
Show all versions of blockfrost-java Show documentation
Java SDK for the Blockfrost.io API
package io.blockfrost.sdk.api.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.*;
import java.util.ArrayList;
import java.util.List;
/**
* AddressTotal
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class AddressTotal {
/**
* Bech32 encoded address
*/
private String address;
/**
* Array of TransactionOutputAmount objects
*/
private List receivedSum = new ArrayList();
/**
* Array of TransactionOutputAmount objects
*/
private List sentSum = new ArrayList();
/**
* Count of all transactions on the address
*/
private Integer txCount;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy