Hi,
Is it possible to set the key of the standard ad metadata keys?
I would like to have request payload of the adStart event with the params to include media.ad.campaign: 'sample campaign', instead of media.ad.campaignId: 'sample campaign'.
ie. have this -
var adMetadata = {};
adMetadata[MediaHeartbeat.AdMetadataKeys.Campaign] = "Sample Campaign";
rather than this -
var adMetadata = {};
adMetadata[MediaHeartbeat.AdMetadataKeys.CampaignId] = "Sample Campaign";
Will this request the campaignId or would it have to be custom metadata?
thanks