2014-06-05 51 views
1

我正在使用Stripe.NET並試圖將資金轉移給收件人。我使用stripe.js創建一個令牌,我不確定該對象的哪個屬性應該用於保存我的新收件人的令牌。 myRecipient.BankAccountNumber是保存令牌的適當字段嗎?使用令牌的C#條帶傳輸

var myRecipient = new StripeRecipientCreateOptions(); 
        myRecipient.Name = username; 
        myRecipient.Type = "individual"; 
        myRecipient.Email = user.email; 

回答

0

對於任何人誰現在碰到這個來了,收件人已經由條紋as seen here棄用。