Skip to content

Commit

Permalink
Update TokenInfoDto JsonNaming and provider
Browse files Browse the repository at this point in the history
  • Loading branch information
leej1012 committed Nov 22, 2023
1 parent b9366ec commit dd182cc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
package com.github.ontio.model.dto;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.Data;

import java.math.BigDecimal;

@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonNaming
public class TokenInfoDto {
private String symbol;

Expand All @@ -22,7 +24,7 @@ public class TokenInfoDto {

private long maxSupply;

private String provider = "Ontology Foundation";
private String provider = "OGD";

private long lastUpdatedTimestamp = System.currentTimeMillis();
}

0 comments on commit dd182cc

Please sign in to comment.