in lambda/src/main/java/cn/amazon/aws/rp/spapi/clients/model/Order.java [979:1022]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Order order = (Order) o;
return Objects.equals(this.amazonOrderId, order.amazonOrderId) &&
Objects.equals(this.sellerOrderId, order.sellerOrderId) &&
Objects.equals(this.purchaseDate, order.purchaseDate) &&
Objects.equals(this.lastUpdateDate, order.lastUpdateDate) &&
Objects.equals(this.orderStatus, order.orderStatus) &&
Objects.equals(this.fulfillmentChannel, order.fulfillmentChannel) &&
Objects.equals(this.salesChannel, order.salesChannel) &&
Objects.equals(this.orderChannel, order.orderChannel) &&
Objects.equals(this.shipServiceLevel, order.shipServiceLevel) &&
Objects.equals(this.orderTotal, order.orderTotal) &&
Objects.equals(this.numberOfItemsShipped, order.numberOfItemsShipped) &&
Objects.equals(this.numberOfItemsUnshipped, order.numberOfItemsUnshipped) &&
Objects.equals(this.paymentExecutionDetail, order.paymentExecutionDetail) &&
Objects.equals(this.paymentMethod, order.paymentMethod) &&
Objects.equals(this.paymentMethodDetails, order.paymentMethodDetails) &&
Objects.equals(this.marketplaceId, order.marketplaceId) &&
Objects.equals(this.shipmentServiceLevelCategory, order.shipmentServiceLevelCategory) &&
Objects.equals(this.easyShipShipmentStatus, order.easyShipShipmentStatus) &&
Objects.equals(this.cbaDisplayableShippingLabel, order.cbaDisplayableShippingLabel) &&
Objects.equals(this.orderType, order.orderType) &&
Objects.equals(this.earliestShipDate, order.earliestShipDate) &&
Objects.equals(this.latestShipDate, order.latestShipDate) &&
Objects.equals(this.earliestDeliveryDate, order.earliestDeliveryDate) &&
Objects.equals(this.latestDeliveryDate, order.latestDeliveryDate) &&
Objects.equals(this.isBusinessOrder, order.isBusinessOrder) &&
Objects.equals(this.isPrime, order.isPrime) &&
Objects.equals(this.isPremiumOrder, order.isPremiumOrder) &&
Objects.equals(this.isGlobalExpressEnabled, order.isGlobalExpressEnabled) &&
Objects.equals(this.replacedOrderId, order.replacedOrderId) &&
Objects.equals(this.isReplacementOrder, order.isReplacementOrder) &&
Objects.equals(this.promiseResponseDueDate, order.promiseResponseDueDate) &&
Objects.equals(this.isEstimatedShipDateSet, order.isEstimatedShipDateSet) &&
Objects.equals(this.isSoldByAB, order.isSoldByAB) &&
Objects.equals(this.assignedShipFromLocationAddress, order.assignedShipFromLocationAddress) &&
Objects.equals(this.fulfillmentInstruction, order.fulfillmentInstruction);
}