ContractStateChangeDetails.java

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

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

  3. import lombok.Getter;
  4. import lombok.Setter;

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

  15.     @JsonProperty("key_base64")
  16.     private String keyBase64;

  17.     @JsonProperty("value_base64")
  18.     private String valueBase64;
  19. }