| Line 25... |
Line 25... |
| 25 |
|
25 |
|
| 26 |
public class ShipmentStatusInfo implements TBase<ShipmentStatusInfo._Fields>, java.io.Serializable, Cloneable, Comparable<ShipmentStatusInfo> {
|
26 |
public class ShipmentStatusInfo implements TBase<ShipmentStatusInfo._Fields>, java.io.Serializable, Cloneable, Comparable<ShipmentStatusInfo> {
|
| 27 |
private static final TStruct STRUCT_DESC = new TStruct("ShipmentStatusInfo");
|
27 |
private static final TStruct STRUCT_DESC = new TStruct("ShipmentStatusInfo");
|
| 28 |
|
28 |
|
| 29 |
private static final TField AWB_FIELD_DESC = new TField("awb", TType.STRING, (short)1);
|
29 |
private static final TField AWB_FIELD_DESC = new TField("awb", TType.STRING, (short)1);
|
| 30 |
private static final TField PROVIDER_ID_FIELD_DESC = new TField("provider_id", TType.I64, (short)3);
|
30 |
private static final TField PROVIDER_ID_FIELD_DESC = new TField("provider_id", TType.I64, (short)2);
|
| 31 |
private static final TField UPDATES_FIELD_DESC = new TField("updates", TType.LIST, (short)4);
|
31 |
private static final TField UPDATES_FIELD_DESC = new TField("updates", TType.LIST, (short)3);
|
| 32 |
private static final TField CURRENT_UPDATE_FIELD_DESC = new TField("currentUpdate", TType.STRUCT, (short)5);
|
32 |
private static final TField CURRENT_UPDATE_FIELD_DESC = new TField("currentUpdate", TType.STRUCT, (short)4);
|
| 33 |
|
33 |
|
| 34 |
private String awb;
|
34 |
private String awb;
|
| 35 |
private long provider_id;
|
35 |
private long provider_id;
|
| 36 |
private List<ShipmentUpdate> updates;
|
36 |
private List<ShipmentUpdate> updates;
|
| 37 |
private ShipmentUpdate currentUpdate;
|
37 |
private ShipmentUpdate currentUpdate;
|
| 38 |
|
38 |
|
| 39 |
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
|
39 |
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
|
| 40 |
public enum _Fields implements TFieldIdEnum {
|
40 |
public enum _Fields implements TFieldIdEnum {
|
| 41 |
AWB((short)1, "awb"),
|
41 |
AWB((short)1, "awb"),
|
| 42 |
PROVIDER_ID((short)3, "provider_id"),
|
42 |
PROVIDER_ID((short)2, "provider_id"),
|
| 43 |
UPDATES((short)4, "updates"),
|
43 |
UPDATES((short)3, "updates"),
|
| 44 |
CURRENT_UPDATE((short)5, "currentUpdate");
|
44 |
CURRENT_UPDATE((short)4, "currentUpdate");
|
| 45 |
|
45 |
|
| 46 |
private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
|
46 |
private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
|
| 47 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
47 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
| 48 |
|
48 |
|
| 49 |
static {
|
49 |
static {
|