/// <summary>
 /// Initializes a new instance of the <see cref="T:FuelSDK.ETCampaignAsset"/> class.
 /// </summary>
 public ETCampaignAsset()
 {
     Endpoint              = ConfigUtil.GetFuelSDKConfigSection().RestEndPoint + "/hub/v1/campaigns/{CampaignID}/assets/{ID}";
     URLProperties         = new[] { "CampaignID", "ID" };
     RequiredURLProperties = new[] { "CampaignID" };
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:FuelSDK.ETEndpoint"/> class.
 /// </summary>
 public ETEndpoint()
 {
     Endpoint              = ConfigUtil.GetFuelSDKConfigSection().RestEndPoint + "/platform/v1/endpoints/{Type}";
     URLProperties         = new[] { "Type" };
     RequiredURLProperties = new string[0];
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:FuelSDK.ETCampaign"/> class.
 /// </summary>
 public ETCampaign()
 {
     Endpoint              = ConfigUtil.GetFuelSDKConfigSection().RestEndPoint + "/hub/v1/campaigns/{ID}";
     URLProperties         = new[] { "ID" };
     RequiredURLProperties = new string[0];
 }