/// <summary>Snippet for MutateSmartCampaignSettings</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MutateSmartCampaignSettings()
 {
     // Create client
     SmartCampaignSettingServiceClient smartCampaignSettingServiceClient = SmartCampaignSettingServiceClient.Create();
     // Initialize request argument(s)
     string customerId = "";
     IEnumerable <SmartCampaignSettingOperation> operations = new SmartCampaignSettingOperation[]
     {
         new SmartCampaignSettingOperation(),
     };
     // Make the request
     MutateSmartCampaignSettingsResponse response = smartCampaignSettingServiceClient.MutateSmartCampaignSettings(customerId, operations);
 }
 /// <summary>Snippet for MutateSmartCampaignSettings</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MutateSmartCampaignSettingsRequestObject()
 {
     // Create client
     SmartCampaignSettingServiceClient smartCampaignSettingServiceClient = SmartCampaignSettingServiceClient.Create();
     // Initialize request argument(s)
     MutateSmartCampaignSettingsRequest request = new MutateSmartCampaignSettingsRequest
     {
         CustomerId = "",
         Operations =
         {
             new SmartCampaignSettingOperation(),
         },
         PartialFailure      = false,
         ValidateOnly        = false,
         ResponseContentType = ResponseContentTypeEnum.Types.ResponseContentType.Unspecified,
     };
     // Make the request
     MutateSmartCampaignSettingsResponse response = smartCampaignSettingServiceClient.MutateSmartCampaignSettings(request);
 }