@@ -23,75 +23,75 @@ interface ShipmentInterface extends \Magento\Framework\Api\ExtensibleDataInterfa
23
23
/*
24
24
* Entity ID.
25
25
*/
26
- const ENTITY_ID = 'entity_id ' ;
26
+ public const ENTITY_ID = 'entity_id ' ;
27
27
/*
28
28
* Store ID.
29
29
*/
30
- const STORE_ID = 'store_id ' ;
30
+ public const STORE_ID = 'store_id ' ;
31
31
/*
32
32
* Total weight.
33
33
*/
34
- const TOTAL_WEIGHT = 'total_weight ' ;
34
+ public const TOTAL_WEIGHT = 'total_weight ' ;
35
35
/*
36
36
* Total quantity. Can be greater than ordered quantity (not validated).
37
37
*/
38
- const TOTAL_QTY = 'total_qty ' ;
38
+ public const TOTAL_QTY = 'total_qty ' ;
39
39
/*
40
40
* Email sent flag.
41
41
*/
42
- const EMAIL_SENT = 'email_sent ' ;
42
+ public const EMAIL_SENT = 'email_sent ' ;
43
43
/*
44
44
* Order ID.
45
45
*/
46
- const ORDER_ID = 'order_id ' ;
46
+ public const ORDER_ID = 'order_id ' ;
47
47
/*
48
48
* Customer ID.
49
49
*/
50
- const CUSTOMER_ID = 'customer_id ' ;
50
+ public const CUSTOMER_ID = 'customer_id ' ;
51
51
/*
52
52
* Shipping address ID.
53
53
*/
54
- const SHIPPING_ADDRESS_ID = 'shipping_address_id ' ;
54
+ public const SHIPPING_ADDRESS_ID = 'shipping_address_id ' ;
55
55
/*
56
56
* Billing address ID.
57
57
*/
58
- const BILLING_ADDRESS_ID = 'billing_address_id ' ;
58
+ public const BILLING_ADDRESS_ID = 'billing_address_id ' ;
59
59
/*
60
60
* Shipment status.
61
61
*/
62
- const SHIPMENT_STATUS = 'shipment_status ' ;
62
+ public const SHIPMENT_STATUS = 'shipment_status ' ;
63
63
/*
64
64
* Increment ID.
65
65
*/
66
- const INCREMENT_ID = 'increment_id ' ;
66
+ public const INCREMENT_ID = 'increment_id ' ;
67
67
/*
68
68
* Created-at timestamp.
69
69
*/
70
- const CREATED_AT = 'created_at ' ;
70
+ public const CREATED_AT = 'created_at ' ;
71
71
/*
72
72
* Updated-at timestamp.
73
73
*/
74
- const UPDATED_AT = 'updated_at ' ;
74
+ public const UPDATED_AT = 'updated_at ' ;
75
75
/*
76
76
* Packages.
77
77
*/
78
- const PACKAGES = 'packages ' ;
78
+ public const PACKAGES = 'packages ' ;
79
79
/*
80
80
* Shipping label.
81
81
*/
82
- const SHIPPING_LABEL = 'shipping_label ' ;
82
+ public const SHIPPING_LABEL = 'shipping_label ' ;
83
83
/*
84
84
* Items.
85
85
*/
86
- const ITEMS = 'items ' ;
86
+ public const ITEMS = 'items ' ;
87
87
/*
88
88
* Tracks.
89
89
*/
90
- const TRACKS = 'tracks ' ;
90
+ public const TRACKS = 'tracks ' ;
91
91
/*
92
92
* Comments.
93
93
*/
94
- const COMMENTS = 'comments ' ;
94
+ public const COMMENTS = 'comments ' ;
95
95
96
96
/**
97
97
* Gets the billing address ID for the shipment.
0 commit comments