month_of_year.proto 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.ads.googleads.v10.enums;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V10.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v10/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "MonthOfYearProto";
  20. option java_package = "com.google.ads.googleads.v10.enums";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V10\\Enums";
  23. option ruby_package = "Google::Ads::GoogleAds::V10::Enums";
  24. // Proto file describing days of week.
  25. // Container for enumeration of months of the year, e.g., "January".
  26. message MonthOfYearEnum {
  27. // Enumerates months of the year, e.g., "January".
  28. enum MonthOfYear {
  29. // Not specified.
  30. UNSPECIFIED = 0;
  31. // The value is unknown in this version.
  32. UNKNOWN = 1;
  33. // January.
  34. JANUARY = 2;
  35. // February.
  36. FEBRUARY = 3;
  37. // March.
  38. MARCH = 4;
  39. // April.
  40. APRIL = 5;
  41. // May.
  42. MAY = 6;
  43. // June.
  44. JUNE = 7;
  45. // July.
  46. JULY = 8;
  47. // August.
  48. AUGUST = 9;
  49. // September.
  50. SEPTEMBER = 10;
  51. // October.
  52. OCTOBER = 11;
  53. // November.
  54. NOVEMBER = 12;
  55. // December.
  56. DECEMBER = 13;
  57. }
  58. }