Skip to content
Snippets Groups Projects
PaymentprocessorWebhook.php 940 B
Newer Older
  • Learn to ignore specific revisions
  • mattwire's avatar
    mattwire committed
     * DAOs provide an OOP-style facade for reading and writing database records.
    
    mattwire's avatar
    mattwire committed
     * DAOs are a primary source for metadata in older versions of CiviCRM (<5.74)
     * and are required for some subsystems (such as APIv3).
     *
     * This stub provides compatibility. It is not intended to be modified in a
     * substantive way. Property annotations may be added, but are not required.
     * @property string $id 
     * @property string $payment_processor_id 
     * @property string $event_id 
     * @property string $trigger 
     * @property string $created_date 
     * @property string $processed_date 
     * @property string $status 
     * @property string $identifier 
     * @property string $message 
     * @property string $data 
    
    mattwire's avatar
    mattwire committed
    class CRM_Mjwshared_DAO_PaymentprocessorWebhook extends CRM_Mjwshared_DAO_Base {
    
    mattwire's avatar
    mattwire committed
       * Required by older versions of CiviCRM (<5.74).
    
       * @var string
       */
      public static $_tableName = 'civicrm_paymentprocessor_webhook';
    
    }