ShoppingCart Entity

<shoppingCart>
    <seller />
    <shippingMethod>
        <name />
        <price />
    </shippingMethod>
    <article />
    <articleValue />
    <totalValue />
</shoppingCart>

For the <seller /> entity see User entity.

For the <article /> entity see Article entity.

Attention: One <shoppingCart /> entity for each different seller is given back.

Example

<shoppingCart>
    <seller>
        <idUser>9999</idUser>
        <username>testApiUser</username>
        <country>D</country
        <isCommercial>X</isCommercial>
        <riskGroup>0</riskGroup>
        <reputation>1</reputation>
    </seller>
    <shippingMethod>
        <name>Lettre Prioritaire Internationale</name>
        <price>1.10</price>
    </shippingMethod>
    <article>
        <idArticle>111223157</idArticle>
        <idProduct>12060</idProduct>
        <language>
            <idLanguage>2</idLanguage>
            <languageName>French</languageName>
        </language>
        <comments></comments>
        <price>0.02</price>
        <count>1</count>
        <condition>NM</condition>
        <isFoil>false</isFoil>
        <isSigned>false</isSigned>
        <isAltered>false</isAltered>
        <isPlayset>false</isPlayset>
    </article>
    <articleValue>0.02</articleValue>
    <totalValue>1.12</totalValue>
</shoppingCart>