| Line 6... |
Line 6... |
| 6 |
*/
|
6 |
*/
|
| 7 |
|
7 |
|
| 8 |
package com.aramex.stub;
|
8 |
package com.aramex.stub;
|
| 9 |
|
9 |
|
| 10 |
public class ShipmentDetails implements java.io.Serializable {
|
10 |
public class ShipmentDetails implements java.io.Serializable {
|
| - |
|
11 |
@Override
|
| - |
|
12 |
public String toString() {
|
| - |
|
13 |
return "ShipmentDetails [dimensions=" + dimensions + ", actualWeight=" + actualWeight + ", chargeableWeight=" + chargeableWeight
|
| - |
|
14 |
+ ", descriptionOfGoods=" + descriptionOfGoods + ", goodsOriginCountry=" + goodsOriginCountry + ", numberOfPieces="
|
| - |
|
15 |
+ numberOfPieces + ", productGroup=" + productGroup + ", productType=" + productType + ", paymentType=" + paymentType
|
| - |
|
16 |
+ ", paymentOptions=" + paymentOptions + ", customsValueAmount=" + customsValueAmount + ", cashOnDeliveryAmount="
|
| - |
|
17 |
+ cashOnDeliveryAmount + ", insuranceAmount=" + insuranceAmount + ", cashAdditionalAmount=" + cashAdditionalAmount
|
| - |
|
18 |
+ ", cashAdditionalAmountDescription=" + cashAdditionalAmountDescription + ", collectAmount=" + collectAmount
|
| - |
|
19 |
+ ", services=" + services + ", items=" + items + ", deliveryInstructions=" + deliveryInstructions + "]";
|
| - |
|
20 |
}
|
| - |
|
21 |
|
| 11 |
private com.aramex.stub.Dimensions dimensions;
|
22 |
private com.aramex.stub.Dimensions dimensions;
|
| 12 |
|
23 |
|
| 13 |
private com.aramex.stub.Weight actualWeight;
|
24 |
private com.aramex.stub.Weight actualWeight;
|
| 14 |
|
25 |
|
| 15 |
private com.aramex.stub.Weight chargeableWeight;
|
26 |
private com.aramex.stub.Weight chargeableWeight;
|
| 16 |
|
27 |
|