/usr/include/Wt/Payment/Customer is in libwt-dev 3.3.3+dfsg-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | // This may look like C code, but it's really -*- C++ -*-
/*
 * Copyright (C) 2012 Emweb bvba, Kessel-Lo, Belgium.
 */
#ifndef WT_PAYMENT_CUSTOMER_H
#define WT_PAYMENT_CUSTOMER_H
#include <Wt/Payment/Address>
#include <string>
namespace Wt {
  class WString;
  namespace Payment {
/*! \class Customer Wt/Payment/Customer Wt/Payment/Customer
 *  \brief Contains customer information.
 *
 * \if cpp
 * \code
 *   Wt::Payment::Customer customer;
 *
 *   customer.setEmail("joe.birkenberg@emweb.be");
 *   customer.setFirstName("Joe");
 *   customer.setLastName("Birkenberg");
 *
 *   Wt::Payment::Address address;
 *   address.setCity("Leuven");
 *   address.setCountryCode("BE");
 *   address.setPhoneNumber("123456789");
 *   address.setStreet1("Brusselsestraat 14");
 *
 *   customer.setShippingAddress(address);
 * \endcode
 * \endif
 *
 * \ingroup payment
 */
class WT_API Customer
{
public:
  /*! \brief Default constructor.
   *
   * All information is blank.
   */
  Customer();
  /*! \brief Sets the first name.
   */
  void setFirstName(const WString& firstName);
  /*! \brief Returns the first name.
   *
   * \sa setFirstName()
   */
  WString firstName() const { return firstName_; }
  /*! \brief Sets the last name.
   */
  void setLastName(const WString& lastName);
  /*! \brief Returns the last name.
   *
   * \sa setLastName()
   */
  WString lastName() const { return lastName_; }
  /*! \brief Sets the email address.
   */
  void setEmail(const std::string& email);
  /*! \brief Returns the email address.
   *
   * \sa setEmail()
   */
  std::string email() const { return email_; }
  /*! \brief Sets the shipping address.
   */
  void setShippingAddress(const Address& address);
  /*! \brief Returns shipping address.
   *
   * \sa setShippingAddress()
   */
  const Address& shippingAddress() const { return shippingAddress_; }
  /*! \brief Sets the customer locale.
   *
   * The customer locale must be specified according to the payment broker
   * (usually to help the user being served in his native language), which
   * is usually a language code like http://en.wikipedia.org/wiki/BCP_47
   */
  void setLocale(const std::string& locale);
  /*! \brief Returns locale
   *
   * \sa setLocale()
   */
  std::string locale() const { return locale_; }
  /*! \brief Sets the payerId field
   *
   * This is the identification of the user with a payment broker which also
   * keeps login information (and other information like shipping addresses)
   * on the user.
   *
   * Not all payment brokers support (or need this).
   */
  void setPayerId(const std::string& payerId);
  /*! \brief Returns payerId
   *
   * \sa setPayerId()
   */
  std::string payerId() const { return payerId_; }
private:
  WString firstName_, lastName_;
  std::string email_;
  Address shippingAddress_;
  std::string locale_;
  std::string payerId_;
};
  }
}
#endif // WT_PAYMENT_CUSTOMER_H_
 |