Google.Api.Ads.AdWords.Tests.v201705.TestUtils.GetTimeStampAlpha()

Here are the examples of the csharp api class Google.Api.Ads.AdWords.Tests.v201705.TestUtils.GetTimeStampAlpha() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: googleads-dotnet-lib
Source File: TestUtils.cs
public long CreateSharedKeywordSet(AdWordsUser user) {
      // Get the SharedSetService.
      SharedSetService sharedSetService = (SharedSetService)
          user.GetService(AdWordsService.v201705.SharedSetService);

      SharedSetOperation operation = new SharedSetOperation();
      operation.@operator = Operator.ADD;
      SharedSet sharedSet = new SharedSet();
      sharedSet.name = "API Negative keyword list - " + GetTimeStampAlpha();
      sharedSet.type = SharedSetType.NEGATIVE_KEYWORDS;
      operation.operand = sharedSet;

      SharedSetReturnValue retval = sharedSetService.mutate(
          new SharedSetOperation[] { operation });
      return retval.value[0].sharedSetId;
    }