All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.theagilemonkeys.meets.magento.methods.CustomerAddressCreate Maven / Gradle / Ivy

package com.theagilemonkeys.meets.magento.methods;

import com.theagilemonkeys.meets.magento.SoapApiMethod;
import com.theagilemonkeys.meets.magento.models.MeetsMageAddress;
import com.theagilemonkeys.meets.models.base.MeetsFactory;

/**
 * Android Meets SDK
 * Original work Copyright (c) 2014 [TheAgileMonkeys]
 *
 * @author Álvaro López Espinosa
 */
public class CustomerAddressCreate extends SoapApiMethod {
    public CustomerAddressCreate() {
        super(MeetsFactory.get().makeAddress().getClass());
    }

    @Override
    protected void parseResponse(Object response, Object model) throws Exception {
        ((MeetsMageAddress) model).setId((Integer) response);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy