| ||
detail: element | attribute | value |
XML Example:<BillingMethodData> <billing_method_type>TS_CC | TS_PAYPAL | TS_BANK | TS_WIRE | TS_OTHER | TS_INVOICE</billing_method_type> <billing_oid>xsd:long</billing_oid> <description>xsd:string</description> zero or N[<orders_on_this_billing_method>OrderBeingBilled</orders_on_this_billing_method>] </BillingMethodData> | JSON Example:{"BillingMethodData": { "billing_method_type": 'TS_CC' | 'TS_PAYPAL' | 'TS_BANK' | 'TS_WIRE' | 'TS_OTHER' | 'TS_INVOICE', "billing_oid": Number, "description": String, "orders_on_this_billing_method": [OrderBeingBilled], } } |
Name | Type | Required | Nillable | Default Value | Description |
---|---|---|---|---|---|
billing_method_type | TS_CC | TS_PAYPAL | TS_BANK | TS_WIRE | TS_OTHER | TS_INVOICE | false | false | The type of the billing method, like credit card, paypal or wire transfer. | |
billing_oid | xsd:long | false | false | The unique billing id. e.g. | |
description | xsd:string | false | false | A description of the billing method, it may include a CC number (with most of the digits as asterisks *) and expiry date if this is acredit card - so you can tell the card apart from other ones. | |
orders_on_this_billing_method | zero or N[OrderBeingBilled] | false | false | A list of orders currently being billed using this billing method. |
| ||
detail: element | attribute | value |