Property | Type | Description | |
---|---|---|---|
$classmap | array | Default class map for wsdl=>php | |
$endpoint | string | The endpoint of the service |
Method | Description | |
---|---|---|
__construct ( string $wsdl, array $options, $user ) | Constructor using wsdl location and options array | |
createCustomTargetingKeys ( $keys ) : the | Creates new {@link CustomTargetingKey} objects. | |
createCustomTargetingValues ( $values ) : the | Creates new {@link CustomTargetingValue} objects. | |
getCustomTargetingKeysByStatement ( $filterStatement ) : the | Gets a {@link CustomTargetingKeyPage} of {@link CustomTargetingKey} objects that satisfy the given {@link Statement#query}. The following fields are supported for filtering: | |
getCustomTargetingValuesByStatement ( $filterStatement ) : the | Gets a {@link CustomTargetingValuePage} of {@link CustomTargetingValue} objects that satisfy the given {@link Statement#query}. | |
performCustomTargetingKeyAction ( $customTargetingKeyAction, $filterStatement ) : the | Performs actions on {@link CustomTargetingKey} objects that match the given {@link Statement#query}. | |
performCustomTargetingValueAction ( $customTargetingValueAction, $filterStatement ) : the | Performs actions on {@link CustomTargetingValue} objects that match the given {@link Statement#query}. | |
updateCustomTargetingKeys ( $keys ) : the | Updates the specified {@link CustomTargetingKey} objects. | |
updateCustomTargetingValues ( $values ) : the | Updates the specified {@link CustomTargetingValue} objects. |
public __construct ( string $wsdl, array $options, $user ) | ||
$wsdl | string | WSDL location for this service |
$options | array | Options for the SoapClient |
public createCustomTargetingKeys ( $keys ) : the | ||
return | the | updated custom targeting keys |
public createCustomTargetingValues ( $values ) : the | ||
return | the | updated custom targeting keys |
PQL Property | Object Property |
---|---|
{@code id} | {@link CustomTargetingKey#id} |
{@code name} | {@link CustomTargetingKey#name} |
{@code displayName} | {@link CustomTargetingKey#displayName} |
{@code type} | {@link CustomTargetingKey#type} |
public getCustomTargetingKeysByStatement ( $filterStatement ) : the | ||
return | the | custom targeting keys that match the given filter |
The {@code WHERE} clause in the {@link Statement#query} must always contain {@link CustomTargetingValue#customTargetingKeyId} as one of its columns in a way that it is AND'ed with the rest of the query. So, if you want to retrieve values for a known set of key ids, valid {@link Statement#query} would look like:
The following fields are supported for filtering:
PQL Property | Object Property |
---|---|
{@code id} | {@link CustomTargetingValue#id} |
{@code customTargetingKeyId} | {@link CustomTargetingValue#customTargetingKeyId} |
{@code name} | {@link CustomTargetingValue#name} |
{@code displayName} | {@link CustomTargetingValue#displayName} |
{@code matchType} | {@link CustomTargetingValue#matchType} |
public getCustomTargetingValuesByStatement ( $filterStatement ) : the | ||
return | the | custom targeting values that match the given filter |
public performCustomTargetingKeyAction ( $customTargetingKeyAction, $filterStatement ) : the | ||
return | the | result of the action performed |
public performCustomTargetingValueAction ( $customTargetingValueAction, $filterStatement ) : the | ||
return | the | result of the action performed |
public updateCustomTargetingKeys ( $keys ) : the | ||
return | the | updated custom targeting keys |
public updateCustomTargetingValues ( $values ) : the | ||
return | the | updated custom targeting values |
public static array $classmap | ||
return | array |
public static string $endpoint | ||
return | string |