![JAR search and dependency download from the Maven repository](/logo.png)
io.blockfrost.sdk.api.model.PolicyAsset 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.*;
/**
* PolicyAsset
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class PolicyAsset {
/**
* Concatenation of the policy_id and hex-encoded asset_name
*/
private String asset;
/**
* Current asset quantity
*/
private String quantity;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy