BlockChanges.java

  1. package com.syntifi.near.api.model.block;

  2. import java.util.Collection;

  3. import com.fasterxml.jackson.annotation.JsonProperty;

  4. import lombok.Getter;
  5. import lombok.Setter;

  6. /**
  7.  * @author Alexandre Carvalho
  8.  * @author Andre Bertolace
  9.  * @since 0.0.1
  10.  */
  11. @Getter
  12. @Setter
  13. public class BlockChanges {
  14.     @JsonProperty("block_hash")
  15.     private String hash;

  16.     @JsonProperty("changes")
  17.     private Collection<BlockChange> changes;
  18. }