Cost.java

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

  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 Cost {
  13.     @JsonProperty("send_sir")
  14.     private long sendSir;

  15.     @JsonProperty("send_not_sir")
  16.     private long sendNotSir;

  17.     @JsonProperty("execution")
  18.     private long execution;
  19. }