Skip to content

BILLREC

Data Type : Billing
BILLREC - Billing Record

#include <billing.h>

Definition :

typedef union {
   SESSIONREC sess;
   REPLREC    repl;
   DOCUMENT   doc;
   MAILREC    mail;
   DBREC      db;
   AGENTREC   agent;
   HTTPREQREC HttpRequest;
} BILLREC;

Description :

The billing record contains billing information specific to the structure type ( BILL_xxx) defined in the billing message. You can extend the billing record to include user-defined billing record structure types.




    Structure Description

    sess -- Session billing record specified by BILL_SESSIONREC

    repl -- Replication billing record specified by BILL_REPLREC

    doc -- Document billing record specified by BILL_DOCCHARGE

    mail -- Mail billing record specified by BILL_MAILREC

    db -- Database access billing record, specified by BILL_DBREC

    agent -- Agent billing record specified by BILL_AGENTREC

    HttpRequest -- Http request billing record specified by BILL_HTTPREQREC

See Also : AGENTREC BillingWrite BILLMSG DBREC DOCUMENT HTTPREQREC MAILREC REPLREC SESSIONREC