| .. | .. |
|---|
| 80 | 80 | private String licenseData; |
|---|
| 81 | 81 | |
|---|
| 82 | 82 | @Column(name = "creation_timestamp") |
|---|
| 83 | + @JsonProperty("creation_timestamp") |
|---|
| 83 | 84 | private Date creationTimestamp; |
|---|
| 84 | 85 | |
|---|
| 85 | 86 | @Column(name = "modification_timestamp") |
|---|
| 87 | + @JsonProperty("modification_timestamp") |
|---|
| 86 | 88 | private Date modificationTimestamp; |
|---|
| 87 | 89 | |
|---|
| 88 | 90 | @Column(name = "last_access_timestamp") |
|---|
| 91 | + @JsonProperty("last_access_timestamp") |
|---|
| 89 | 92 | private Date lastAccessTimestamp; |
|---|
| 90 | 93 | |
|---|
| 91 | 94 | @Column(name = "expiration_date") |
|---|
| 95 | + @JsonProperty("expiration_date") |
|---|
| 92 | 96 | private Date expirationDate; |
|---|
| 93 | 97 | |
|---|
| 94 | 98 | private String comments; |
|---|