- package com.syntifi.near.api.model.protocol;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @author Alexandre Carvalho
- * @author Andre Bertolace
- * @since 0.0.1
- */
- @Getter
- @Setter
- public class StorageUsageConfig {
- @JsonProperty("num_bytes_account")
- private long numBytesAccount;
- @JsonProperty("num_extra_bytes_record")
- private long numExtraBytesRecord;
- }