Campaign Objects

Campaign

This object refers to how Campaign defined in Hawksearch for your account will be returned to or fed to the Hawksearch API.

public class Campaign { public int Id { get; set; } public Guid SyncGuid { get; set; } public string Name { get; set; } public int ZoneId { get; set; } public int MinWidth { get; set; } public int MaxWidth { get; set; } public int MaxHeight { get; set; } public int SortOrder { get; set; } public string RuleXml { get; set; } public bool IsTrigger { get; set; } public IEnumerable < BannerCampaign > Banners { get; set; } public string Tags { get; set; } public DateTime CreateDate { get; set; } public DateTime ModifyDate { get; set; } }