FieldValue

Generalized field-value pair.

Description

This object is used by several methods that do not have a fixed list of parameters (like runTransaction ). See the documentation of the specific method for the valid field names. (Methods using this object are listed below.)

Properties

TypeNameDescription
stringFieldName of element. (optional)
stringValueValue of element. (optional)

Examples

eBizCharge.FieldValue[] tran = new eBizCharge.FieldValue[9];
           for (int i = 0; i < 9; i++)
           {
               tran[i] = new eBizCharge.FieldValue();
           }
           tran[0].Field = "UMname";           tran[0].Value = "Tester Jones";
           tran[1].Field = "UMdescription";    tran[1].Value = "runTransactionAPI sale";
           tran[2].Field = "UMamount";         tran[2].Value = "1.00";
           tran[3].Field = "UMinvoice";        tran[3].Value = "12345";
           tran[4].Field = "UMcard";           tran[4].Value = "4444555566667779";
           tran[5].Field = "UMexpir";          tran[5].Value = "1212";
           tran[6].Field = "UMstreet";         tran[6].Value = "123 Main Street";
           tran[7].Field = "UMzip";            tran[7].Value = "90046";
           tran[8].Field = "UMcvv2";           tran[8].Value = "999";