// // KWMOrder.h // iCemarose // // Created by HouWeiBin on 2017/4/20. // Copyright © 2017年 kollway. All rights reserved. // #import <JSONModel/JSONModel.h> #import "KWMBaseModel.h" @interface KWMOrder : KWMBaseModel //標題 /* fulfilled: Every line item in the order has been fulfilled. 每个订单项都已完成 null: None of the line items in the order have been fulfilled. 没有订单项已完成 partial: At least one line item in the order has been fulfilled. 部分订单项已完成 */ @property (nonatomic) NSString *fulfillmentStatus; /* "cancel_reason": null The reason why the order was cancelled. If the order was not cancelled, this value is "null." If the order was cancelled, the value will be one of the following: customer: The customer changed or cancelled the order. fraud: The order was fraudulent. inventory: Items in the order were not in inventory. other: The order was cancelled for a reason not in the list above. */ @property (nonatomic) NSString *cancelReason; /* The date and time when the order was cancelled. If the order was cancelled, the API returns this value in ISO 8601 format. If the order was not cancelled, this value is "null." */ @property (nonatomic) NSString *closedAt; @end