您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

144 行
6.9 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v1/enums/income_range_type.proto
  3. package enums // import "google.golang.org/genproto/googleapis/ads/googleads/v1/enums"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "google.golang.org/genproto/googleapis/api/annotations"
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  17. // The type of demographic income ranges (e.g. between 0% to 50%).
  18. type IncomeRangeTypeEnum_IncomeRangeType int32
  19. const (
  20. // Not specified.
  21. IncomeRangeTypeEnum_UNSPECIFIED IncomeRangeTypeEnum_IncomeRangeType = 0
  22. // Used for return value only. Represents value unknown in this version.
  23. IncomeRangeTypeEnum_UNKNOWN IncomeRangeTypeEnum_IncomeRangeType = 1
  24. // 0%-50%.
  25. IncomeRangeTypeEnum_INCOME_RANGE_0_50 IncomeRangeTypeEnum_IncomeRangeType = 510001
  26. // 50% to 60%.
  27. IncomeRangeTypeEnum_INCOME_RANGE_50_60 IncomeRangeTypeEnum_IncomeRangeType = 510002
  28. // 60% to 70%.
  29. IncomeRangeTypeEnum_INCOME_RANGE_60_70 IncomeRangeTypeEnum_IncomeRangeType = 510003
  30. // 70% to 80%.
  31. IncomeRangeTypeEnum_INCOME_RANGE_70_80 IncomeRangeTypeEnum_IncomeRangeType = 510004
  32. // 80% to 90%.
  33. IncomeRangeTypeEnum_INCOME_RANGE_80_90 IncomeRangeTypeEnum_IncomeRangeType = 510005
  34. // Greater than 90%.
  35. IncomeRangeTypeEnum_INCOME_RANGE_90_UP IncomeRangeTypeEnum_IncomeRangeType = 510006
  36. // Undetermined income range.
  37. IncomeRangeTypeEnum_INCOME_RANGE_UNDETERMINED IncomeRangeTypeEnum_IncomeRangeType = 510000
  38. )
  39. var IncomeRangeTypeEnum_IncomeRangeType_name = map[int32]string{
  40. 0: "UNSPECIFIED",
  41. 1: "UNKNOWN",
  42. 510001: "INCOME_RANGE_0_50",
  43. 510002: "INCOME_RANGE_50_60",
  44. 510003: "INCOME_RANGE_60_70",
  45. 510004: "INCOME_RANGE_70_80",
  46. 510005: "INCOME_RANGE_80_90",
  47. 510006: "INCOME_RANGE_90_UP",
  48. 510000: "INCOME_RANGE_UNDETERMINED",
  49. }
  50. var IncomeRangeTypeEnum_IncomeRangeType_value = map[string]int32{
  51. "UNSPECIFIED": 0,
  52. "UNKNOWN": 1,
  53. "INCOME_RANGE_0_50": 510001,
  54. "INCOME_RANGE_50_60": 510002,
  55. "INCOME_RANGE_60_70": 510003,
  56. "INCOME_RANGE_70_80": 510004,
  57. "INCOME_RANGE_80_90": 510005,
  58. "INCOME_RANGE_90_UP": 510006,
  59. "INCOME_RANGE_UNDETERMINED": 510000,
  60. }
  61. func (x IncomeRangeTypeEnum_IncomeRangeType) String() string {
  62. return proto.EnumName(IncomeRangeTypeEnum_IncomeRangeType_name, int32(x))
  63. }
  64. func (IncomeRangeTypeEnum_IncomeRangeType) EnumDescriptor() ([]byte, []int) {
  65. return fileDescriptor_income_range_type_bf14b0e403a6ed66, []int{0, 0}
  66. }
  67. // Container for enum describing the type of demographic income ranges.
  68. type IncomeRangeTypeEnum struct {
  69. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  70. XXX_unrecognized []byte `json:"-"`
  71. XXX_sizecache int32 `json:"-"`
  72. }
  73. func (m *IncomeRangeTypeEnum) Reset() { *m = IncomeRangeTypeEnum{} }
  74. func (m *IncomeRangeTypeEnum) String() string { return proto.CompactTextString(m) }
  75. func (*IncomeRangeTypeEnum) ProtoMessage() {}
  76. func (*IncomeRangeTypeEnum) Descriptor() ([]byte, []int) {
  77. return fileDescriptor_income_range_type_bf14b0e403a6ed66, []int{0}
  78. }
  79. func (m *IncomeRangeTypeEnum) XXX_Unmarshal(b []byte) error {
  80. return xxx_messageInfo_IncomeRangeTypeEnum.Unmarshal(m, b)
  81. }
  82. func (m *IncomeRangeTypeEnum) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  83. return xxx_messageInfo_IncomeRangeTypeEnum.Marshal(b, m, deterministic)
  84. }
  85. func (dst *IncomeRangeTypeEnum) XXX_Merge(src proto.Message) {
  86. xxx_messageInfo_IncomeRangeTypeEnum.Merge(dst, src)
  87. }
  88. func (m *IncomeRangeTypeEnum) XXX_Size() int {
  89. return xxx_messageInfo_IncomeRangeTypeEnum.Size(m)
  90. }
  91. func (m *IncomeRangeTypeEnum) XXX_DiscardUnknown() {
  92. xxx_messageInfo_IncomeRangeTypeEnum.DiscardUnknown(m)
  93. }
  94. var xxx_messageInfo_IncomeRangeTypeEnum proto.InternalMessageInfo
  95. func init() {
  96. proto.RegisterType((*IncomeRangeTypeEnum)(nil), "google.ads.googleads.v1.enums.IncomeRangeTypeEnum")
  97. proto.RegisterEnum("google.ads.googleads.v1.enums.IncomeRangeTypeEnum_IncomeRangeType", IncomeRangeTypeEnum_IncomeRangeType_name, IncomeRangeTypeEnum_IncomeRangeType_value)
  98. }
  99. func init() {
  100. proto.RegisterFile("google/ads/googleads/v1/enums/income_range_type.proto", fileDescriptor_income_range_type_bf14b0e403a6ed66)
  101. }
  102. var fileDescriptor_income_range_type_bf14b0e403a6ed66 = []byte{
  103. // 385 bytes of a gzipped FileDescriptorProto
  104. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0x5d, 0xca, 0xd3, 0x40,
  105. 0x18, 0x85, 0x4d, 0x04, 0x85, 0xf9, 0x2e, 0xbe, 0x31, 0x0a, 0xfe, 0xe0, 0x47, 0x68, 0x17, 0x30,
  106. 0x99, 0x20, 0xfd, 0x1b, 0xaf, 0xd2, 0x76, 0x2c, 0x41, 0x3a, 0x0d, 0xb5, 0xa9, 0x20, 0x81, 0x21,
  107. 0x36, 0x21, 0x04, 0x9a, 0x99, 0xd0, 0x49, 0x0b, 0xbd, 0x76, 0x03, 0x5d, 0x83, 0x97, 0x5e, 0xf9,
  108. 0xbf, 0x08, 0x77, 0xa2, 0x6e, 0x42, 0x92, 0xd8, 0x42, 0x4b, 0xf4, 0x66, 0x38, 0xbc, 0xcf, 0x7b,
  109. 0x0e, 0xc3, 0x79, 0x41, 0x27, 0x91, 0x32, 0x59, 0xc7, 0x56, 0x18, 0x29, 0xab, 0x96, 0xa5, 0xda,
  110. 0xd9, 0x56, 0x2c, 0xb6, 0x99, 0xb2, 0x52, 0xb1, 0x92, 0x59, 0xcc, 0x37, 0xa1, 0x48, 0x62, 0x5e,
  111. 0xec, 0xf3, 0x18, 0xe5, 0x1b, 0x59, 0x48, 0xe3, 0xa6, 0xde, 0x45, 0x61, 0xa4, 0xd0, 0xc9, 0x86,
  112. 0x76, 0x36, 0xaa, 0x6c, 0x4f, 0x9e, 0x1e, 0x53, 0xf3, 0xd4, 0x0a, 0x85, 0x90, 0x45, 0x58, 0xa4,
  113. 0x52, 0xa8, 0xda, 0xdc, 0x7e, 0xa7, 0x83, 0xfb, 0x6e, 0x15, 0x3c, 0x2f, 0x73, 0x17, 0xfb, 0x3c,
  114. 0xa6, 0x62, 0x9b, 0xb5, 0x7f, 0x6b, 0xe0, 0xfa, 0x62, 0x6e, 0x5c, 0x83, 0x2b, 0x9f, 0xbd, 0xf2,
  115. 0xe8, 0xc8, 0x7d, 0xe1, 0xd2, 0x31, 0xbc, 0x65, 0x5c, 0x81, 0xbb, 0x3e, 0x7b, 0xc9, 0x66, 0xaf,
  116. 0x19, 0xd4, 0x8c, 0x87, 0xe0, 0x9e, 0xcb, 0x46, 0xb3, 0x29, 0xe5, 0x73, 0x87, 0x4d, 0x28, 0xc7,
  117. 0xbc, 0x83, 0xe1, 0xa7, 0x83, 0x69, 0x3c, 0x02, 0xc6, 0x19, 0xe8, 0x60, 0xde, 0xc5, 0xf0, 0x73,
  118. 0x03, 0xe9, 0x62, 0xde, 0xc3, 0xf0, 0x4b, 0x03, 0xe9, 0x61, 0xde, 0xc7, 0xf0, 0x6b, 0x03, 0xe9,
  119. 0x63, 0x3e, 0xc0, 0xf0, 0x5b, 0x03, 0x19, 0x60, 0xee, 0x7b, 0xf0, 0xfb, 0xc1, 0x34, 0x4c, 0xf0,
  120. 0xf8, 0x8c, 0xf8, 0x6c, 0x4c, 0x17, 0x74, 0x3e, 0x75, 0x19, 0x1d, 0xc3, 0x8f, 0x07, 0x73, 0xf8,
  121. 0x53, 0x03, 0xad, 0x95, 0xcc, 0xd0, 0x7f, 0x9b, 0x1c, 0x3e, 0xb8, 0x28, 0xc4, 0x2b, 0x1b, 0xf4,
  122. 0xb4, 0x37, 0xc3, 0xbf, 0xb6, 0x44, 0xae, 0x43, 0x91, 0x20, 0xb9, 0x49, 0xac, 0x24, 0x16, 0x55,
  123. 0xbf, 0xc7, 0x3b, 0xe6, 0xa9, 0xfa, 0xc7, 0x59, 0x9f, 0x57, 0xef, 0x7b, 0xfd, 0xf6, 0xc4, 0x71,
  124. 0x3e, 0xe8, 0x37, 0x93, 0x3a, 0xca, 0x89, 0x14, 0xaa, 0x65, 0xa9, 0x96, 0x36, 0x2a, 0x8f, 0xa2,
  125. 0x7e, 0x1c, 0x79, 0xe0, 0x44, 0x2a, 0x38, 0xf1, 0x60, 0x69, 0x07, 0x15, 0xff, 0xa5, 0xb7, 0xea,
  126. 0x21, 0x21, 0x4e, 0xa4, 0x08, 0x39, 0x6d, 0x10, 0xb2, 0xb4, 0x09, 0xa9, 0x76, 0xde, 0xde, 0xa9,
  127. 0x3e, 0xf6, 0xec, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x2f, 0x0a, 0x92, 0x6e, 0x02, 0x00,
  128. 0x00,
  129. }