public UsBankAccountVerification(NodeWrapper node) { if (node == null) { return; } VerificationMethod = (UsBankAccountVerificationMethod)CollectionUtil.Find( UsBankAccountVerificationMethod.ALL, node.GetString("verification-method"), UsBankAccountVerificationMethod.UNRECOGNIZED ); VerificationDeterminedAt = node.GetDateTime("verification-determined-at"); GatewayRejectionReason = null; ProcessorResponseCode = node.GetString("processor-response-code"); ProcessorResponseText = node.GetString("processor-response-text"); MerchantAccountId = node.GetString("merchant-account-id"); Status = (UsBankAccountVerificationStatus)CollectionUtil.Find( UsBankAccountVerificationStatus.ALL, node.GetString("status"), UsBankAccountVerificationStatus.UNRECOGNIZED ); Id = node.GetString("id"); UsBankAccount = new UsBankAccount(node.GetNode("us-bank-account")); CreatedAt = node.GetDateTime("created-at"); }
protected internal Customer(NodeWrapper node, IBraintreeGateway gateway) { if (node == null) { return; } Id = node.GetString("id"); FirstName = node.GetString("first-name"); LastName = node.GetString("last-name"); Company = node.GetString("company"); Email = node.GetString("email"); Phone = node.GetString("phone"); Fax = node.GetString("fax"); Website = node.GetString("website"); CreatedAt = node.GetDateTime("created-at"); UpdatedAt = node.GetDateTime("updated-at"); var creditCardXmlNodes = node.GetList("credit-cards/credit-card"); CreditCards = new CreditCard[creditCardXmlNodes.Count]; for (int i = 0; i < creditCardXmlNodes.Count; i++) { CreditCards[i] = new CreditCard(creditCardXmlNodes[i], gateway); } var paypalXmlNodes = node.GetList("paypal-accounts/paypal-account"); PayPalAccounts = new PayPalAccount[paypalXmlNodes.Count]; for (int i = 0; i < paypalXmlNodes.Count; i++) { PayPalAccounts[i] = new PayPalAccount(paypalXmlNodes[i], gateway); } var applePayXmlNodes = node.GetList("apple-pay-cards/apple-pay-card"); ApplePayCards = new ApplePayCard[applePayXmlNodes.Count]; for (int i = 0; i < applePayXmlNodes.Count; i++) { ApplePayCards[i] = new ApplePayCard(applePayXmlNodes[i], gateway); } var androidPayCardXmlNodes = node.GetList("android-pay-cards/android-pay-card"); AndroidPayCards = new AndroidPayCard[androidPayCardXmlNodes.Count]; for (int i = 0; i < androidPayCardXmlNodes.Count; i++) { AndroidPayCards[i] = new AndroidPayCard(androidPayCardXmlNodes[i], gateway); } var amexExpressCheckoutCardXmlNodes = node.GetList("amex-express-checkout-cards/amex-express-checkout-card"); AmexExpressCheckoutCards = new AmexExpressCheckoutCard[amexExpressCheckoutCardXmlNodes.Count]; for (int i = 0; i < amexExpressCheckoutCardXmlNodes.Count; i++) { AmexExpressCheckoutCards[i] = new AmexExpressCheckoutCard(amexExpressCheckoutCardXmlNodes[i], gateway); } var coinbaseXmlNodes = node.GetList("coinbase-accounts/coinbase-account"); CoinbaseAccounts = new CoinbaseAccount[coinbaseXmlNodes.Count]; for (int i = 0; i < coinbaseXmlNodes.Count; i++) { CoinbaseAccounts[i] = new CoinbaseAccount(coinbaseXmlNodes[i], gateway); } var venmoAccountXmlNodes = node.GetList("venmo-accounts/venmo-account"); VenmoAccounts = new VenmoAccount[venmoAccountXmlNodes.Count]; for (int i = 0; i < venmoAccountXmlNodes.Count; i++) { VenmoAccounts[i] = new VenmoAccount(venmoAccountXmlNodes[i], gateway); } var visaCheckoutCardsXmlNodes = node.GetList("visa-checkout-cards/visa-checkout-card"); VisaCheckoutCards = new VisaCheckoutCard[visaCheckoutCardsXmlNodes.Count]; for (int i = 0; i < visaCheckoutCardsXmlNodes.Count; i++) { VisaCheckoutCards[i] = new VisaCheckoutCard(visaCheckoutCardsXmlNodes[i], gateway); } var masterpassCardsXmlNodes = node.GetList("masterpass-cards/masterpass-card"); MasterpassCards = new MasterpassCard[masterpassCardsXmlNodes.Count]; for (int i = 0; i < masterpassCardsXmlNodes.Count; i++) { MasterpassCards[i] = new MasterpassCard(masterpassCardsXmlNodes[i], gateway); } var usBankAccountXmlNodes = node.GetList("us-bank-accounts/us-bank-account"); UsBankAccounts = new UsBankAccount[usBankAccountXmlNodes.Count]; for (int i = 0; i < usBankAccountXmlNodes.Count; i++) { UsBankAccounts[i] = new UsBankAccount(usBankAccountXmlNodes[i]); } PaymentMethods = new PaymentMethod[ CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length + CoinbaseAccounts.Length + AndroidPayCards.Length + AmexExpressCheckoutCards.Length + VenmoAccounts.Length + VisaCheckoutCards.Length + MasterpassCards.Length + UsBankAccounts.Length ]; CreditCards.CopyTo(PaymentMethods, 0); PayPalAccounts.CopyTo(PaymentMethods, CreditCards.Length); ApplePayCards.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length); CoinbaseAccounts.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length); AndroidPayCards.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length + CoinbaseAccounts.Length); AmexExpressCheckoutCards.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length + CoinbaseAccounts.Length + AndroidPayCards.Length); VenmoAccounts.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length + CoinbaseAccounts.Length + AndroidPayCards.Length + AmexExpressCheckoutCards.Length); VisaCheckoutCards.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length + CoinbaseAccounts.Length + AndroidPayCards.Length + AmexExpressCheckoutCards.Length + VenmoAccounts.Length); MasterpassCards.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length + CoinbaseAccounts.Length + AndroidPayCards.Length + AmexExpressCheckoutCards.Length + VenmoAccounts.Length + VisaCheckoutCards.Length); UsBankAccounts.CopyTo(PaymentMethods, CreditCards.Length + PayPalAccounts.Length + ApplePayCards.Length + CoinbaseAccounts.Length + AndroidPayCards.Length + AmexExpressCheckoutCards.Length + VenmoAccounts.Length + VisaCheckoutCards.Length + MasterpassCards.Length); var addressXmlNodes = node.GetList("addresses/address"); Addresses = new Address[addressXmlNodes.Count]; for (int i = 0; i < addressXmlNodes.Count; i++) { Addresses[i] = new Address(addressXmlNodes[i]); } CustomFields = node.GetDictionary("custom-fields"); }