Subversion Repositories SmartDukaan

Rev

Rev 22598 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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