com.seeq.model.GenericTableOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 64.3.0-v202405012032
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.seeq.model.TableColumnOutputV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* Table from the formula result
*/
@Schema(description = "Table from the formula result")
public class GenericTableOutputV1 {
@JsonProperty("data")
private List> data = new ArrayList>();
@JsonProperty("headers")
private List headers = new ArrayList();
public GenericTableOutputV1 data(List> data) {
this.data = data;
return this;
}
public GenericTableOutputV1 addDataItem(List