Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Groupon API 中提供了很多数据,但我无法在任何地方找到有关不同字段含义的信息。
“endAt”和“expiresAt”对我来说很模糊。交易不再有效的时间对于弄错交易非常重要,这是没有选择的。
有任何想法吗?
我在猜测,但我认为 expireAt 有时为空,因为并非每个报价都有过期,但我认为它比不为空的 endAt 日期更好。所以这样的事情对我来说很有意义:
string endDate = (!String.IsNullOrEmpty(deal.expiresAt)) ? deal.expiresAt : deal.endAt;