public virtual Task <StripeApplicationFeeRefund> UpdateAsync(string applicationFeeId, string refundId, StripeApplicationFeeRefundUpdateOptions updateOptions, StripeRequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(PostAsync($"{Urls.BaseUrl}/application_fees/{applicationFeeId}/refunds/{refundId}", requestOptions, cancellationToken, updateOptions));
 }
 public virtual StripeApplicationFeeRefund Update(string applicationFeeId, string refundId, StripeApplicationFeeRefundUpdateOptions updateOptions, StripeRequestOptions requestOptions = null)
 {
     return(Post($"{Urls.BaseUrl}/application_fees/{applicationFeeId}/refunds/{refundId}", requestOptions, updateOptions));
 }