public void write(TProtocol oprot) throws TException { validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RESPONSE_CODE_FIELD_DESC); oprot.writeI32(this.responseCode); oprot.writeFieldEnd(); oprot.writeFieldBegin(TRANSACTION_ID_FIELD_DESC); oprot.writeI64(this.transactionID); oprot.writeFieldEnd(); if (this.description != null) { oprot.writeFieldBegin(DESCRIPTION_FIELD_DESC); oprot.writeString(this.description); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); }
public void read(TProtocol iprot) throws TException { TField field; iprot.readStructBegin(); while (true) { field = iprot.readFieldBegin(); if (field.type == TType.STOP) { break; } switch (field.id) { case 1: // RESPONSE_CODE if (field.type == TType.I32) { this.responseCode = iprot.readI32(); setResponseCodeIsSet(true); } else { TProtocolUtil.skip(iprot, field.type); } break; case 2: // TRANSACTION_ID if (field.type == TType.I64) { this.transactionID = iprot.readI64(); setTransactionIDIsSet(true); } else { TProtocolUtil.skip(iprot, field.type); } break; case 3: // DESCRIPTION if (field.type == TType.STRING) { this.description = iprot.readString(); } else { TProtocolUtil.skip(iprot, field.type); } break; default: TProtocolUtil.skip(iprot, field.type); } iprot.readFieldEnd(); } iprot.readStructEnd(); // check for required fields of primitive type, which can't be checked in the validate method validate(); }