write method
Writes the objects out to the oprot
protocol.
Implementation
write(TProtocol oprot) {
validate();
oprot.writeStructBegin(_STRUCT_DESC);
if (this.user != null) {
oprot.writeFieldBegin(_USER_FIELD_DESC);
oprot.writeBinary(this.user);
oprot.writeFieldEnd();
}
if (this.graph_addr != null) {
oprot.writeFieldBegin(_GRAPH_ADDR_FIELD_DESC);
this.graph_addr?.write(oprot);
oprot.writeFieldEnd();
}
if (this.client_ip != null) {
oprot.writeFieldBegin(_CLIENT_IP_FIELD_DESC);
oprot.writeBinary(this.client_ip);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}