Stripe.BankAccountService.Verify C# (CSharp) Method

Verify() public method

public Verify ( string customerId, string bankAccountId, BankAccountVerifyOptions verifyoptions, Stripe.StripeRequestOptions requestOptions = null ) : CustomerBankAccount
customerId string
bankAccountId string
verifyoptions BankAccountVerifyOptions
requestOptions Stripe.StripeRequestOptions
return CustomerBankAccount
        public virtual CustomerBankAccount Verify(string customerId, string bankAccountId, BankAccountVerifyOptions verifyoptions, StripeRequestOptions requestOptions = null)
        {
            return Mapper<CustomerBankAccount>.MapFromJson(
                Requestor.PostString(
                    this.ApplyAllParameters(verifyoptions, $"{Urls.BaseUrl}/customers/{customerId}/sources/{bankAccountId}/verify"),
                    SetupRequestOptions(requestOptions)
                )
            );
        }