| 37080 |
amit |
1 |
package com.spice.profitmandi.dao.service.biuedart;
|
|
|
2 |
|
|
|
3 |
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
4 |
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
5 |
|
|
|
6 |
import java.time.LocalDate;
|
|
|
7 |
import java.util.ArrayList;
|
|
|
8 |
import java.util.Date;
|
|
|
9 |
import java.util.List;
|
|
|
10 |
|
|
|
11 |
class Request {
|
|
|
12 |
@JsonProperty("Consignee")
|
|
|
13 |
private Consignee consignee = new Consignee();
|
|
|
14 |
|
|
|
15 |
@JsonProperty("Returnadds")
|
|
|
16 |
private ReturnAddress returnAddress = new ReturnAddress();
|
|
|
17 |
|
|
|
18 |
@JsonProperty("Services")
|
|
|
19 |
private Services services = new Services();
|
|
|
20 |
|
|
|
21 |
@JsonProperty("Shipper")
|
|
|
22 |
private Shipper shipper = new Shipper();
|
|
|
23 |
|
|
|
24 |
public Consignee getConsignee() {
|
|
|
25 |
return consignee;
|
|
|
26 |
}
|
|
|
27 |
|
|
|
28 |
public void setConsignee(Consignee consignee) {
|
|
|
29 |
this.consignee = consignee;
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
public ReturnAddress getReturnAddress() {
|
|
|
33 |
return returnAddress;
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
public void setReturnAddress(ReturnAddress returnAddress) {
|
|
|
37 |
this.returnAddress = returnAddress;
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
public Services getServices() {
|
|
|
41 |
return services;
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
public void setServices(Services services) {
|
|
|
45 |
this.services = services;
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
public Shipper getShipper() {
|
|
|
49 |
return shipper;
|
|
|
50 |
}
|
|
|
51 |
|
|
|
52 |
public void setShipper(Shipper shipper) {
|
|
|
53 |
this.shipper = shipper;
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
// Constructors, getters, and setters
|
|
|
57 |
}
|