Open the Portico Developer Guide site
PosGateway Schema
MCType Complex Type
PosGateway Schema : MCType Complex Type
Namespace http://Hps.Exchange.PosGateway
Diagram
LineItems Element All MCType Complex Type
Overview
All
Sequence 0..∞
Sequence
ItemDescription optional Restriction of xs:string

Description of the good or service being supplied.

ProductCode optional Restriction of xs:string

Identifies the product being purchased, for example, an inventory number or UPC code. A value other than spaces or zeros should be provided.

Quantity Restriction of xs:decimal

The number of units of the product being purchased. Must be numeric and greater than zero.

ItemTotalAmt Restriction of xs:decimal

Contains the total amount of the line item; calculated as unit cost multiplied by quantity, less discount. The total amount must be greater than zero.

UnitOfMeasure optional Restriction of xs:string

Contains the code indicating the unit of measure (gallons, etc.).

Used By
MC Element
Source
<xs:complexType name="MCType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:all>
    <xs:element name="LineItems">
      <xs:complexType>
        <xs:sequence minOccurs="0" maxOccurs="unbounded">
          <xs:element name="LineItemDetail" type="MCLineItemsType" />
        </xs:sequence>
      </xs:complexType>
    </xs:element>
  </xs:all>
</xs:complexType>
See Also
PosGateway Schema