congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
CreditCard.getCustomerId
Code IndexAdd Tabnine to your IDE (free)

How to use
getCustomerId
method
in
com.aoindustries.creditcards.CreditCard

Best Java code snippets using com.aoindustries.creditcards.CreditCard.getCustomerId (Showing top 4 results out of 315)

origin: com.aoindustries/ao-credit-cards-stripe

/** https://stripe.com/docs/api#metadata */
private static Map<String,Object> makeMetadata(CreditCard creditCard, boolean update) {
  Map<String,Object> metadata = new LinkedHashMap<String,Object>();
  addMetaData(update, metadata, "company_name", creditCard.getCompanyName(), true);
  addMetaData(update, metadata, "phone", creditCard.getPhone(), true);
  addMetaData(update, metadata, "fax", creditCard.getFax(), true);
  addMetaData(update, metadata, "customer_id", creditCard.getCustomerId(), true);
  addMetaData(update, metadata, "customer_tax_id", creditCard.getCustomerTaxId(), true);
  return metadata;
}
origin: com.aoindustries/ao-credit-cards-authorizeNet

addField(querySB, "x_email_customer", transactionRequest.getEmailCustomer() ? "TRUE" : "FALSE");
addField(querySB, "x_merchant_email", transactionRequest.getMerchantEmail());
addField(querySB, "x_cust_id", creditCard.getCustomerId());
addField(querySB, "x_customer_ip", transactionRequest.getCustomerIp());
origin: com.aoindustries/ao-credit-cards-usaepay

String customerId = creditCard.getCustomerId();
if(customerId!=null && customerId.length()>0) request.put("UMcustid", customerId);
origin: com.aoindustries/ao-credit-cards-payflowPro

String customerIp = transactionRequest.getCustomerIp();
if(customerIp!=null && customerIp.length()>0) customerInfo.setCustIP(customerIp);
String customerId = creditCard.getCustomerId();
if(customerId!=null && customerId.length()>0) customerInfo.setCustCode(customerId);
invoice.setCustomerInfo(customerInfo);
com.aoindustries.creditcardsCreditCardgetCustomerId

Popular methods of CreditCard

  • getCardCode
  • getCardNumber
  • getCity
  • getCountryCode
  • getEmail
  • getFirstName
  • getLastName
  • getPhone
  • getPostalCode
  • getState
  • getStreetAddress1
  • getStreetAddress2
  • getStreetAddress1,
  • getStreetAddress2,
  • getComments,
  • getCompanyName,
  • getExpirationDateMMYY,
  • getFax,
  • getFullName,
  • numbersOnly,
  • getCustomerTaxId

Popular in Java

  • Updating database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • requestLocationUpdates (LocationManager)
  • findViewById (Activity)
  • Menu (java.awt)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Table (org.hibernate.mapping)
    A relational table
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now