コード例 #1
0
 public virtual PaymentIntent Update(string id, PaymentIntentUpdateOptions options, RequestOptions requestOptions = null)
 {
     return(this.UpdateEntity(id, options, requestOptions));
 }
コード例 #2
0
 public virtual Task <PaymentIntent> UpdateAsync(string paymentIntentId, PaymentIntentUpdateOptions options, StripeRequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(this.PostAsync($"{Urls.BaseUrl}/payment_intents/{paymentIntentId}", requestOptions, cancellationToken, options));
 }
コード例 #3
0
 public virtual Task <PaymentIntent> UpdateAsync(string id, PaymentIntentUpdateOptions options, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.UpdateEntityAsync(id, options, requestOptions, cancellationToken));
 }
コード例 #4
0
 public virtual PaymentIntent Update(string paymentIntentId, PaymentIntentUpdateOptions options, StripeRequestOptions requestOptions = null)
 {
     return(this.Post($"{Urls.BaseUrl}/payment_intents/{paymentIntentId}", requestOptions, options));
 }