CustomerService::get PHP Method

get() public method

Returns details of the authorized customer.
public get ( ) : customer
return customer associated with the caller
        public function get()
        {
            $args = new CustomerServiceGet();
            $result = $this->__soapCall("get", array($args));
            return $result->rval;
        }