in src/Apache.IoTDB/Rpc/Generated/TSCreateTimeseriesReq.cs [503:541]
public override string ToString()
{
var sb = new StringBuilder("TSCreateTimeseriesReq(");
sb.Append(", SessionId: ");
SessionId.ToString(sb);
if((Path != null))
{
sb.Append(", Path: ");
Path.ToString(sb);
}
sb.Append(", DataType: ");
DataType.ToString(sb);
sb.Append(", Encoding: ");
Encoding.ToString(sb);
sb.Append(", Compressor: ");
Compressor.ToString(sb);
if((Props != null) && __isset.props)
{
sb.Append(", Props: ");
Props.ToString(sb);
}
if((Tags != null) && __isset.tags)
{
sb.Append(", Tags: ");
Tags.ToString(sb);
}
if((Attributes != null) && __isset.attributes)
{
sb.Append(", Attributes: ");
Attributes.ToString(sb);
}
if((MeasurementAlias != null) && __isset.measurementAlias)
{
sb.Append(", MeasurementAlias: ");
MeasurementAlias.ToString(sb);
}
sb.Append(')');
return sb.ToString();
}