* @throws SOAPException
*/
public static final SetExpressCheckoutResponseType setExpressCheckout(SetExpressCheckoutRequestType _request, APICredential _credentials) throws RemoteException {
long startTime = System.currentTimeMillis();
validateRequest(_request);
SetExpressCheckoutResponseType response = getAPIAAInterface(_credentials).setExpressCheckout(new SetExpressCheckoutReq(_request));
processResponse(response);
long endTime = System.currentTimeMillis();
logMessage(startTime, endTime, response, "API.setExpressCheckout");
return response;
}