Package com.magento.api

Examples of com.magento.api.SalesOrderStatusHistoryEntity


    @Test
    public void testMagentoArrayAttributes() throws Exception
    {
        SalesOrderEntity magentoObject = new SalesOrderEntity();
        magentoObject.setStatus_history(new SalesOrderStatusHistoryEntity[]{new SalesOrderStatusHistoryEntity()});
        Map<String, Object> map = MagentoMap.toMap(magentoObject);
        assertThat(map.get("status_history"), instanceOf(List.class));
    }
View Full Code Here

TOP

Related Classes of com.magento.api.SalesOrderStatusHistoryEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.