Created
August 10, 2020 00:05
-
-
Save Raouf25/a33a5611238768133ba2fa0e515924fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.rest.api.covid19.domain; | |
import com.fasterxml.jackson.annotation.JsonInclude; | |
import com.fasterxml.jackson.annotation.JsonProperty; | |
import lombok.Data; | |
import java.util.List; | |
@Data | |
@JsonInclude(JsonInclude.Include.NON_NULL) | |
public class Covid19Statistics { | |
@JsonProperty("Global") | |
private Global global; | |
@JsonProperty("Countries") | |
private List<Country> countries = null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment