setAudienceLevel(audienceLevel)
![]() |
audienceLevel - オーディエンス・レベルを含む文字列。
|
![]() |
audienceLevel の名前は、Campaign で定義されているオーディエンス・レベルの名前と正確に一致する必要があります。 大/小文字の区別があります。
|
String audienceLevel="Customer";
. . .
Command startSessionCommand = new CommandImpl();
startSessionCommand.setAudienceID(initialAudienceId);
. . .
Command setAudienceCommand = new CommandImpl();
setAudienceCommand.setAudienceLevel(audienceLevel);
. . .
/** Build command array */
Command[] commands =
{
startSessionCommand,
setAudienceCommand,
};
/** Make the call */
BatchResponse batchResponse = api.executeBatch(sessionId, commands);
/** Process the response appropriately */
processExecuteBatchResponse(batchResponse);
Copyright IBM Corporation 2013. All Rights Reserved.
|