30 public string PlaceId {
get;
private set; }
32 internal Creative(
string creativeId,
string campaignId,
string placeId)
34 this.CreativeId = creativeId;
35 this.CampaignId = campaignId;
36 this.PlaceId = placeId;
41 return $
"{{CreativeId={CreativeId}, CampaignId={CampaignId}, PlaceId={PlaceId}}}";
Contains information about a creative in the ad.
string CreativeId
Creative ID — a unique identifier for the creative.
string CampaignId
Campaign ID — an identifier for the campaign.
string PlaceId
The unique identifier for the ad placement.
override string ToString()