Sha256: 0c88d18573f031dc1e95ad37e2d5e9f910140ba4ea627207b30209908e15fda9
Contents?: true
Size: 643 Bytes
Versions: 12
Compression:
Stored size: 643 Bytes
Contents
package com.treasuredata.api.model; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; public class TDTableList { private String name; private List<TDTable> tables; @JsonCreator public TDTableList( @JsonProperty("name") String name, @JsonProperty("tables") List<TDTable> tables) { this.name = name; this.tables = tables; } @JsonProperty public String getName() { return name; } @JsonProperty public List<TDTable> getTables() { return tables; } }
Version data entries
12 entries across 12 versions & 1 rubygems