in tablestore/src/main/java/com/alicloud/openservices/tablestore/model/TableOptions.java [303:350]
protected boolean jsonizeFields(StringBuilder sb, boolean firstItem) {
if (this.timeToLive.isValueSet()) {
if (firstItem) {
firstItem = false;
} else {
sb.append(", ");
}
sb.append("\"TimeToLive\": ");
sb.append(this.timeToLive.getValue());
}
if (this.maxVersions.isValueSet()) {
if (firstItem) {
firstItem = false;
} else {
sb.append(", ");
}
sb.append("\"MaxVersions\": ");
sb.append(this.maxVersions.getValue());
}
if (this.maxTimeDeviation.isValueSet()) {
if (firstItem) {
firstItem = false;
} else {
sb.append(", ");
}
sb.append("\"MaxTimeDeviation\": ");
sb.append(this.maxTimeDeviation.getValue());
}
if (this.allowUpdate.isValueSet()) {
if (firstItem) {
firstItem = false;
} else {
sb.append(", ");
}
sb.append("\"AllowUpdate\": ");
sb.append(this.allowUpdate.getValue());
}
if (this.updateFullRow.isValueSet()) {
if (firstItem) {
firstItem = false;
} else {
sb.append(", ");
}
sb.append("\"UpdateFullRow\": ");
sb.append(this.updateFullRow.getValue());
}
return firstItem;
}