AccountLabelService::get PHP Method

get() public method

Returns a list of labels specified by the selector for the authenticated user.
public get ( $selector ) : response
return response containing lists of labels that meet all the criteria of the selector
        public function get($selector)
        {
            $args = new AccountLabelServiceGet($selector);
            $result = $this->__soapCall("get", array($args));
            return $result->rval;
        }
AccountLabelService