Skip to content

Commit

Permalink
add "isAggregated" property
Browse files Browse the repository at this point in the history
  • Loading branch information
redmitry committed Nov 6, 2023
1 parent 340990f commit 8d07ba8
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
package es.bsc.inb.ga4gh.beacon.framework.model.v200.responses;

import es.bsc.inb.ga4gh.beacon.framework.model.v200.common.SchemaPerEntity;
import jakarta.json.bind.annotation.JsonbProperty;
import java.util.List;

/**
Expand All @@ -36,6 +37,8 @@ public class BeaconInformationalResponseMeta {

private String beacon_id;
private String api_version;
private Boolean aggregated ;

private List<SchemaPerEntity> returned_schemas;

public String getBeaconId() {
Expand All @@ -53,6 +56,16 @@ public String getApiVersion() {
public void setApiVersion(String api_version) {
this.api_version = api_version;
}

@JsonbProperty("isAggregated")
public Boolean getAggregated() {
return aggregated;
}

@JsonbProperty("isAggregated")
public void setAggregated(Boolean aggregated) {
this.aggregated = aggregated;
}

public List<SchemaPerEntity> getReturnedSchemas() {
return returned_schemas;
Expand Down

0 comments on commit 8d07ba8

Please sign in to comment.