Subversion Repositories SmartDukaan

Rev

Rev 9724 | Rev 11095 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9724 Rev 9779
Line 36... Line 36...
36
  private static final org.apache.thrift.protocol.TField SUPPRESS_INVENTORY_FEED_FIELD_DESC = new org.apache.thrift.protocol.TField("suppressInventoryFeed", org.apache.thrift.protocol.TType.BOOL, (short)11);
36
  private static final org.apache.thrift.protocol.TField SUPPRESS_INVENTORY_FEED_FIELD_DESC = new org.apache.thrift.protocol.TField("suppressInventoryFeed", org.apache.thrift.protocol.TType.BOOL, (short)11);
37
  private static final org.apache.thrift.protocol.TField MAX_NLC_FIELD_DESC = new org.apache.thrift.protocol.TField("maxNlc", org.apache.thrift.protocol.TType.DOUBLE, (short)12);
37
  private static final org.apache.thrift.protocol.TField MAX_NLC_FIELD_DESC = new org.apache.thrift.protocol.TField("maxNlc", org.apache.thrift.protocol.TType.DOUBLE, (short)12);
38
  private static final org.apache.thrift.protocol.TField SKU_AT_SNAPDEAL_FIELD_DESC = new org.apache.thrift.protocol.TField("skuAtSnapdeal", org.apache.thrift.protocol.TType.STRING, (short)13);
38
  private static final org.apache.thrift.protocol.TField SKU_AT_SNAPDEAL_FIELD_DESC = new org.apache.thrift.protocol.TField("skuAtSnapdeal", org.apache.thrift.protocol.TType.STRING, (short)13);
39
  private static final org.apache.thrift.protocol.TField SUPC_FIELD_DESC = new org.apache.thrift.protocol.TField("supc", org.apache.thrift.protocol.TType.STRING, (short)14);
39
  private static final org.apache.thrift.protocol.TField SUPC_FIELD_DESC = new org.apache.thrift.protocol.TField("supc", org.apache.thrift.protocol.TType.STRING, (short)14);
40
  private static final org.apache.thrift.protocol.TField SHIPPING_TIME_FIELD_DESC = new org.apache.thrift.protocol.TField("shippingTime", org.apache.thrift.protocol.TType.STRING, (short)15);
40
  private static final org.apache.thrift.protocol.TField SHIPPING_TIME_FIELD_DESC = new org.apache.thrift.protocol.TField("shippingTime", org.apache.thrift.protocol.TType.STRING, (short)15);
-
 
41
  private static final org.apache.thrift.protocol.TField UPDATED_BY_FIELD_DESC = new org.apache.thrift.protocol.TField("updatedBy", org.apache.thrift.protocol.TType.STRING, (short)16);
-
 
42
  private static final org.apache.thrift.protocol.TField MARKETPLACE_ITEMS_FIELD_DESC = new org.apache.thrift.protocol.TField("marketplaceItems", org.apache.thrift.protocol.TType.STRUCT, (short)17);
41
 
43
 
42
  private long item_id; // required
44
  private long item_id; // required
43
  private long warehouseId; // required
45
  private long warehouseId; // required
44
  private double exceptionPrice; // required
46
  private double exceptionPrice; // required
45
  private boolean isListedOnSnapdeal; // required
47
  private boolean isListedOnSnapdeal; // required
Line 52... Line 54...
52
  private boolean suppressInventoryFeed; // required
54
  private boolean suppressInventoryFeed; // required
53
  private double maxNlc; // required
55
  private double maxNlc; // required
54
  private String skuAtSnapdeal; // required
56
  private String skuAtSnapdeal; // required
55
  private String supc; // required
57
  private String supc; // required
56
  private String shippingTime; // required
58
  private String shippingTime; // required
-
 
59
  private String updatedBy; // required
-
 
60
  private MarketplaceItems marketplaceItems; // required
57
 
61
 
58
  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
62
  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
59
  public enum _Fields implements org.apache.thrift.TFieldIdEnum {
63
  public enum _Fields implements org.apache.thrift.TFieldIdEnum {
60
    ITEM_ID((short)1, "item_id"),
64
    ITEM_ID((short)1, "item_id"),
61
    WAREHOUSE_ID((short)2, "warehouseId"),
65
    WAREHOUSE_ID((short)2, "warehouseId"),
Line 69... Line 73...
69
    SUPPRESS_PRICE_FEED((short)10, "suppressPriceFeed"),
73
    SUPPRESS_PRICE_FEED((short)10, "suppressPriceFeed"),
70
    SUPPRESS_INVENTORY_FEED((short)11, "suppressInventoryFeed"),
74
    SUPPRESS_INVENTORY_FEED((short)11, "suppressInventoryFeed"),
71
    MAX_NLC((short)12, "maxNlc"),
75
    MAX_NLC((short)12, "maxNlc"),
72
    SKU_AT_SNAPDEAL((short)13, "skuAtSnapdeal"),
76
    SKU_AT_SNAPDEAL((short)13, "skuAtSnapdeal"),
73
    SUPC((short)14, "supc"),
77
    SUPC((short)14, "supc"),
74
    SHIPPING_TIME((short)15, "shippingTime");
78
    SHIPPING_TIME((short)15, "shippingTime"),
-
 
79
    UPDATED_BY((short)16, "updatedBy"),
-
 
80
    MARKETPLACE_ITEMS((short)17, "marketplaceItems");
75
 
81
 
76
    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
82
    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
77
 
83
 
78
    static {
84
    static {
79
      for (_Fields field : EnumSet.allOf(_Fields.class)) {
85
      for (_Fields field : EnumSet.allOf(_Fields.class)) {
Line 114... Line 120...
114
          return SKU_AT_SNAPDEAL;
120
          return SKU_AT_SNAPDEAL;
115
        case 14: // SUPC
121
        case 14: // SUPC
116
          return SUPC;
122
          return SUPC;
117
        case 15: // SHIPPING_TIME
123
        case 15: // SHIPPING_TIME
118
          return SHIPPING_TIME;
124
          return SHIPPING_TIME;
-
 
125
        case 16: // UPDATED_BY
-
 
126
          return UPDATED_BY;
-
 
127
        case 17: // MARKETPLACE_ITEMS
-
 
128
          return MARKETPLACE_ITEMS;
119
        default:
129
        default:
120
          return null;
130
          return null;
121
      }
131
      }
122
    }
132
    }
123
 
133
 
Line 201... Line 211...
201
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
211
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
202
    tmpMap.put(_Fields.SUPC, new org.apache.thrift.meta_data.FieldMetaData("supc", org.apache.thrift.TFieldRequirementType.DEFAULT, 
212
    tmpMap.put(_Fields.SUPC, new org.apache.thrift.meta_data.FieldMetaData("supc", org.apache.thrift.TFieldRequirementType.DEFAULT, 
203
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
213
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
204
    tmpMap.put(_Fields.SHIPPING_TIME, new org.apache.thrift.meta_data.FieldMetaData("shippingTime", org.apache.thrift.TFieldRequirementType.DEFAULT, 
214
    tmpMap.put(_Fields.SHIPPING_TIME, new org.apache.thrift.meta_data.FieldMetaData("shippingTime", org.apache.thrift.TFieldRequirementType.DEFAULT, 
205
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
215
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
-
 
216
    tmpMap.put(_Fields.UPDATED_BY, new org.apache.thrift.meta_data.FieldMetaData("updatedBy", org.apache.thrift.TFieldRequirementType.DEFAULT, 
-
 
217
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
-
 
218
    tmpMap.put(_Fields.MARKETPLACE_ITEMS, new org.apache.thrift.meta_data.FieldMetaData("marketplaceItems", org.apache.thrift.TFieldRequirementType.DEFAULT, 
-
 
219
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, MarketplaceItems.class)));
206
    metaDataMap = Collections.unmodifiableMap(tmpMap);
220
    metaDataMap = Collections.unmodifiableMap(tmpMap);
207
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SnapdealItem.class, metaDataMap);
221
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SnapdealItem.class, metaDataMap);
208
  }
222
  }
209
 
223
 
210
  public SnapdealItem() {
224
  public SnapdealItem() {
Line 223... Line 237...
223
    boolean suppressPriceFeed,
237
    boolean suppressPriceFeed,
224
    boolean suppressInventoryFeed,
238
    boolean suppressInventoryFeed,
225
    double maxNlc,
239
    double maxNlc,
226
    String skuAtSnapdeal,
240
    String skuAtSnapdeal,
227
    String supc,
241
    String supc,
228
    String shippingTime)
242
    String shippingTime,
-
 
243
    String updatedBy,
-
 
244
    MarketplaceItems marketplaceItems)
229
  {
245
  {
230
    this();
246
    this();
231
    this.item_id = item_id;
247
    this.item_id = item_id;
232
    setItem_idIsSet(true);
248
    setItem_idIsSet(true);
233
    this.warehouseId = warehouseId;
249
    this.warehouseId = warehouseId;
Line 253... Line 269...
253
    this.maxNlc = maxNlc;
269
    this.maxNlc = maxNlc;
254
    setMaxNlcIsSet(true);
270
    setMaxNlcIsSet(true);
255
    this.skuAtSnapdeal = skuAtSnapdeal;
271
    this.skuAtSnapdeal = skuAtSnapdeal;
256
    this.supc = supc;
272
    this.supc = supc;
257
    this.shippingTime = shippingTime;
273
    this.shippingTime = shippingTime;
-
 
274
    this.updatedBy = updatedBy;
-
 
275
    this.marketplaceItems = marketplaceItems;
258
  }
276
  }
259
 
277
 
260
  /**
278
  /**
261
   * Performs a deep copy on <i>other</i>.
279
   * Performs a deep copy on <i>other</i>.
262
   */
280
   */
Line 282... Line 300...
282
      this.supc = other.supc;
300
      this.supc = other.supc;
283
    }
301
    }
284
    if (other.isSetShippingTime()) {
302
    if (other.isSetShippingTime()) {
285
      this.shippingTime = other.shippingTime;
303
      this.shippingTime = other.shippingTime;
286
    }
304
    }
-
 
305
    if (other.isSetUpdatedBy()) {
-
 
306
      this.updatedBy = other.updatedBy;
-
 
307
    }
-
 
308
    if (other.isSetMarketplaceItems()) {
-
 
309
      this.marketplaceItems = new MarketplaceItems(other.marketplaceItems);
-
 
310
    }
287
  }
311
  }
288
 
312
 
289
  public SnapdealItem deepCopy() {
313
  public SnapdealItem deepCopy() {
290
    return new SnapdealItem(this);
314
    return new SnapdealItem(this);
291
  }
315
  }
Line 317... Line 341...
317
    setMaxNlcIsSet(false);
341
    setMaxNlcIsSet(false);
318
    this.maxNlc = 0.0;
342
    this.maxNlc = 0.0;
319
    this.skuAtSnapdeal = null;
343
    this.skuAtSnapdeal = null;
320
    this.supc = null;
344
    this.supc = null;
321
    this.shippingTime = null;
345
    this.shippingTime = null;
-
 
346
    this.updatedBy = null;
-
 
347
    this.marketplaceItems = null;
322
  }
348
  }
323
 
349
 
324
  public long getItem_id() {
350
  public long getItem_id() {
325
    return this.item_id;
351
    return this.item_id;
326
  }
352
  }
Line 652... Line 678...
652
    if (!value) {
678
    if (!value) {
653
      this.shippingTime = null;
679
      this.shippingTime = null;
654
    }
680
    }
655
  }
681
  }
656
 
682
 
-
 
683
  public String getUpdatedBy() {
-
 
684
    return this.updatedBy;
-
 
685
  }
-
 
686
 
-
 
687
  public void setUpdatedBy(String updatedBy) {
-
 
688
    this.updatedBy = updatedBy;
-
 
689
  }
-
 
690
 
-
 
691
  public void unsetUpdatedBy() {
-
 
692
    this.updatedBy = null;
-
 
693
  }
-
 
694
 
-
 
695
  /** Returns true if field updatedBy is set (has been assigned a value) and false otherwise */
-
 
696
  public boolean isSetUpdatedBy() {
-
 
697
    return this.updatedBy != null;
-
 
698
  }
-
 
699
 
-
 
700
  public void setUpdatedByIsSet(boolean value) {
-
 
701
    if (!value) {
-
 
702
      this.updatedBy = null;
-
 
703
    }
-
 
704
  }
-
 
705
 
-
 
706
  public MarketplaceItems getMarketplaceItems() {
-
 
707
    return this.marketplaceItems;
-
 
708
  }
-
 
709
 
-
 
710
  public void setMarketplaceItems(MarketplaceItems marketplaceItems) {
-
 
711
    this.marketplaceItems = marketplaceItems;
-
 
712
  }
-
 
713
 
-
 
714
  public void unsetMarketplaceItems() {
-
 
715
    this.marketplaceItems = null;
-
 
716
  }
-
 
717
 
-
 
718
  /** Returns true if field marketplaceItems is set (has been assigned a value) and false otherwise */
-
 
719
  public boolean isSetMarketplaceItems() {
-
 
720
    return this.marketplaceItems != null;
-
 
721
  }
-
 
722
 
-
 
723
  public void setMarketplaceItemsIsSet(boolean value) {
-
 
724
    if (!value) {
-
 
725
      this.marketplaceItems = null;
-
 
726
    }
-
 
727
  }
-
 
728
 
657
  public void setFieldValue(_Fields field, Object value) {
729
  public void setFieldValue(_Fields field, Object value) {
658
    switch (field) {
730
    switch (field) {
659
    case ITEM_ID:
731
    case ITEM_ID:
660
      if (value == null) {
732
      if (value == null) {
661
        unsetItem_id();
733
        unsetItem_id();
Line 774... Line 846...
774
      } else {
846
      } else {
775
        setShippingTime((String)value);
847
        setShippingTime((String)value);
776
      }
848
      }
777
      break;
849
      break;
778
 
850
 
-
 
851
    case UPDATED_BY:
-
 
852
      if (value == null) {
-
 
853
        unsetUpdatedBy();
-
 
854
      } else {
-
 
855
        setUpdatedBy((String)value);
-
 
856
      }
-
 
857
      break;
-
 
858
 
-
 
859
    case MARKETPLACE_ITEMS:
-
 
860
      if (value == null) {
-
 
861
        unsetMarketplaceItems();
-
 
862
      } else {
-
 
863
        setMarketplaceItems((MarketplaceItems)value);
-
 
864
      }
-
 
865
      break;
-
 
866
 
779
    }
867
    }
780
  }
868
  }
781
 
869
 
782
  public Object getFieldValue(_Fields field) {
870
  public Object getFieldValue(_Fields field) {
783
    switch (field) {
871
    switch (field) {
Line 824... Line 912...
824
      return getSupc();
912
      return getSupc();
825
 
913
 
826
    case SHIPPING_TIME:
914
    case SHIPPING_TIME:
827
      return getShippingTime();
915
      return getShippingTime();
828
 
916
 
-
 
917
    case UPDATED_BY:
-
 
918
      return getUpdatedBy();
-
 
919
 
-
 
920
    case MARKETPLACE_ITEMS:
-
 
921
      return getMarketplaceItems();
-
 
922
 
829
    }
923
    }
830
    throw new IllegalStateException();
924
    throw new IllegalStateException();
831
  }
925
  }
832
 
926
 
833
  /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
927
  /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
Line 865... Line 959...
865
      return isSetSkuAtSnapdeal();
959
      return isSetSkuAtSnapdeal();
866
    case SUPC:
960
    case SUPC:
867
      return isSetSupc();
961
      return isSetSupc();
868
    case SHIPPING_TIME:
962
    case SHIPPING_TIME:
869
      return isSetShippingTime();
963
      return isSetShippingTime();
-
 
964
    case UPDATED_BY:
-
 
965
      return isSetUpdatedBy();
-
 
966
    case MARKETPLACE_ITEMS:
-
 
967
      return isSetMarketplaceItems();
870
    }
968
    }
871
    throw new IllegalStateException();
969
    throw new IllegalStateException();
872
  }
970
  }
873
 
971
 
874
  @Override
972
  @Override
Line 1017... Line 1115...
1017
        return false;
1115
        return false;
1018
      if (!this.shippingTime.equals(that.shippingTime))
1116
      if (!this.shippingTime.equals(that.shippingTime))
1019
        return false;
1117
        return false;
1020
    }
1118
    }
1021
 
1119
 
-
 
1120
    boolean this_present_updatedBy = true && this.isSetUpdatedBy();
-
 
1121
    boolean that_present_updatedBy = true && that.isSetUpdatedBy();
-
 
1122
    if (this_present_updatedBy || that_present_updatedBy) {
-
 
1123
      if (!(this_present_updatedBy && that_present_updatedBy))
-
 
1124
        return false;
-
 
1125
      if (!this.updatedBy.equals(that.updatedBy))
-
 
1126
        return false;
-
 
1127
    }
-
 
1128
 
-
 
1129
    boolean this_present_marketplaceItems = true && this.isSetMarketplaceItems();
-
 
1130
    boolean that_present_marketplaceItems = true && that.isSetMarketplaceItems();
-
 
1131
    if (this_present_marketplaceItems || that_present_marketplaceItems) {
-
 
1132
      if (!(this_present_marketplaceItems && that_present_marketplaceItems))
-
 
1133
        return false;
-
 
1134
      if (!this.marketplaceItems.equals(that.marketplaceItems))
-
 
1135
        return false;
-
 
1136
    }
-
 
1137
 
1022
    return true;
1138
    return true;
1023
  }
1139
  }
1024
 
1140
 
1025
  @Override
1141
  @Override
1026
  public int hashCode() {
1142
  public int hashCode() {
Line 1183... Line 1299...
1183
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.shippingTime, typedOther.shippingTime);
1299
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.shippingTime, typedOther.shippingTime);
1184
      if (lastComparison != 0) {
1300
      if (lastComparison != 0) {
1185
        return lastComparison;
1301
        return lastComparison;
1186
      }
1302
      }
1187
    }
1303
    }
-
 
1304
    lastComparison = Boolean.valueOf(isSetUpdatedBy()).compareTo(typedOther.isSetUpdatedBy());
-
 
1305
    if (lastComparison != 0) {
-
 
1306
      return lastComparison;
-
 
1307
    }
-
 
1308
    if (isSetUpdatedBy()) {
-
 
1309
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.updatedBy, typedOther.updatedBy);
-
 
1310
      if (lastComparison != 0) {
-
 
1311
        return lastComparison;
-
 
1312
      }
-
 
1313
    }
-
 
1314
    lastComparison = Boolean.valueOf(isSetMarketplaceItems()).compareTo(typedOther.isSetMarketplaceItems());
-
 
1315
    if (lastComparison != 0) {
-
 
1316
      return lastComparison;
-
 
1317
    }
-
 
1318
    if (isSetMarketplaceItems()) {
-
 
1319
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.marketplaceItems, typedOther.marketplaceItems);
-
 
1320
      if (lastComparison != 0) {
-
 
1321
        return lastComparison;
-
 
1322
      }
-
 
1323
    }
1188
    return 0;
1324
    return 0;
1189
  }
1325
  }
1190
 
1326
 
1191
  public _Fields fieldForId(int fieldId) {
1327
  public _Fields fieldForId(int fieldId) {
1192
    return _Fields.findByThriftId(fieldId);
1328
    return _Fields.findByThriftId(fieldId);
Line 1317... Line 1453...
1317
            this.shippingTime = iprot.readString();
1453
            this.shippingTime = iprot.readString();
1318
          } else { 
1454
          } else { 
1319
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
1455
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
1320
          }
1456
          }
1321
          break;
1457
          break;
-
 
1458
        case 16: // UPDATED_BY
-
 
1459
          if (field.type == org.apache.thrift.protocol.TType.STRING) {
-
 
1460
            this.updatedBy = iprot.readString();
-
 
1461
          } else { 
-
 
1462
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
-
 
1463
          }
-
 
1464
          break;
-
 
1465
        case 17: // MARKETPLACE_ITEMS
-
 
1466
          if (field.type == org.apache.thrift.protocol.TType.STRUCT) {
-
 
1467
            this.marketplaceItems = new MarketplaceItems();
-
 
1468
            this.marketplaceItems.read(iprot);
-
 
1469
          } else { 
-
 
1470
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
-
 
1471
          }
-
 
1472
          break;
1322
        default:
1473
        default:
1323
          org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
1474
          org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
1324
      }
1475
      }
1325
      iprot.readFieldEnd();
1476
      iprot.readFieldEnd();
1326
    }
1477
    }
Line 1381... Line 1532...
1381
    if (this.shippingTime != null) {
1532
    if (this.shippingTime != null) {
1382
      oprot.writeFieldBegin(SHIPPING_TIME_FIELD_DESC);
1533
      oprot.writeFieldBegin(SHIPPING_TIME_FIELD_DESC);
1383
      oprot.writeString(this.shippingTime);
1534
      oprot.writeString(this.shippingTime);
1384
      oprot.writeFieldEnd();
1535
      oprot.writeFieldEnd();
1385
    }
1536
    }
-
 
1537
    if (this.updatedBy != null) {
-
 
1538
      oprot.writeFieldBegin(UPDATED_BY_FIELD_DESC);
-
 
1539
      oprot.writeString(this.updatedBy);
-
 
1540
      oprot.writeFieldEnd();
-
 
1541
    }
-
 
1542
    if (this.marketplaceItems != null) {
-
 
1543
      oprot.writeFieldBegin(MARKETPLACE_ITEMS_FIELD_DESC);
-
 
1544
      this.marketplaceItems.write(oprot);
-
 
1545
      oprot.writeFieldEnd();
-
 
1546
    }
1386
    oprot.writeFieldStop();
1547
    oprot.writeFieldStop();
1387
    oprot.writeStructEnd();
1548
    oprot.writeStructEnd();
1388
  }
1549
  }
1389
 
1550
 
1390
  @Override
1551
  @Override
Line 1461... Line 1622...
1461
      sb.append("null");
1622
      sb.append("null");
1462
    } else {
1623
    } else {
1463
      sb.append(this.shippingTime);
1624
      sb.append(this.shippingTime);
1464
    }
1625
    }
1465
    first = false;
1626
    first = false;
-
 
1627
    if (!first) sb.append(", ");
-
 
1628
    sb.append("updatedBy:");
-
 
1629
    if (this.updatedBy == null) {
-
 
1630
      sb.append("null");
-
 
1631
    } else {
-
 
1632
      sb.append(this.updatedBy);
-
 
1633
    }
-
 
1634
    first = false;
-
 
1635
    if (!first) sb.append(", ");
-
 
1636
    sb.append("marketplaceItems:");
-
 
1637
    if (this.marketplaceItems == null) {
-
 
1638
      sb.append("null");
-
 
1639
    } else {
-
 
1640
      sb.append(this.marketplaceItems);
-
 
1641
    }
-
 
1642
    first = false;
1466
    sb.append(")");
1643
    sb.append(")");
1467
    return sb.toString();
1644
    return sb.toString();
1468
  }
1645
  }
1469
 
1646
 
1470
  public void validate() throws org.apache.thrift.TException {
1647
  public void validate() throws org.apache.thrift.TException {