GasProfile.java

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

  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 GasProfile {
  13.     @JsonProperty("cost_category")
  14.     private String costCategory;

  15.     @JsonProperty("cost")
  16.     private CostType cost;

  17.     @JsonProperty("gas_used")
  18.     private String gasUsed;
  19. }