条纹.Net-从客户对象获取卡

时间:2019-06-14 08:53:47

标签: .net stripe-payments

我正在尝试在Stripe.Net中检索客户卡的列表

their documentation中,提到了卡片可以在Sources.data下找到。

但是,我在来源下看不到“ data”属性。

enter image description here

我在这里缺少演员表吗?

1 个答案:

答案 0 :(得分:0)

确定。

我必须将其强制转换为“源”,然后才能访问Card对象。

Stripe.Customer customer = _customerService.Get(id);
Stripe.Source source = customer.DefaultSource as Stripe.Source;
Stripe.SourceCard card = source.Card;