You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

217 lines
9.0 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v0/resources/campaign_bid_modifier.proto
  3. package resources // import "google.golang.org/genproto/googleapis/ads/googleads/v0/resources"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import wrappers "github.com/golang/protobuf/ptypes/wrappers"
  8. import common "google.golang.org/genproto/googleapis/ads/googleads/v0/common"
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  18. // Represents a bid-modifiable only criterion at the campaign level.
  19. type CampaignBidModifier struct {
  20. // The resource name of the campaign bid modifier.
  21. // Campaign bid modifier resource names have the form:
  22. //
  23. // `customers/{customer_id}/campaignBidModifiers/{campaign_id}_{criterion_id}`
  24. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
  25. // The campaign to which this criterion belongs.
  26. Campaign *wrappers.StringValue `protobuf:"bytes,2,opt,name=campaign,proto3" json:"campaign,omitempty"`
  27. // The ID of the criterion to bid modify.
  28. //
  29. // This field is ignored for mutates.
  30. CriterionId *wrappers.Int64Value `protobuf:"bytes,3,opt,name=criterion_id,json=criterionId,proto3" json:"criterion_id,omitempty"`
  31. // The modifier for the bid when the criterion matches.
  32. BidModifier *wrappers.DoubleValue `protobuf:"bytes,4,opt,name=bid_modifier,json=bidModifier,proto3" json:"bid_modifier,omitempty"`
  33. // The criterion of this campaign bid modifier.
  34. //
  35. // Types that are valid to be assigned to Criterion:
  36. // *CampaignBidModifier_InteractionType
  37. Criterion isCampaignBidModifier_Criterion `protobuf_oneof:"criterion"`
  38. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  39. XXX_unrecognized []byte `json:"-"`
  40. XXX_sizecache int32 `json:"-"`
  41. }
  42. func (m *CampaignBidModifier) Reset() { *m = CampaignBidModifier{} }
  43. func (m *CampaignBidModifier) String() string { return proto.CompactTextString(m) }
  44. func (*CampaignBidModifier) ProtoMessage() {}
  45. func (*CampaignBidModifier) Descriptor() ([]byte, []int) {
  46. return fileDescriptor_campaign_bid_modifier_8a4182815fbca687, []int{0}
  47. }
  48. func (m *CampaignBidModifier) XXX_Unmarshal(b []byte) error {
  49. return xxx_messageInfo_CampaignBidModifier.Unmarshal(m, b)
  50. }
  51. func (m *CampaignBidModifier) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  52. return xxx_messageInfo_CampaignBidModifier.Marshal(b, m, deterministic)
  53. }
  54. func (dst *CampaignBidModifier) XXX_Merge(src proto.Message) {
  55. xxx_messageInfo_CampaignBidModifier.Merge(dst, src)
  56. }
  57. func (m *CampaignBidModifier) XXX_Size() int {
  58. return xxx_messageInfo_CampaignBidModifier.Size(m)
  59. }
  60. func (m *CampaignBidModifier) XXX_DiscardUnknown() {
  61. xxx_messageInfo_CampaignBidModifier.DiscardUnknown(m)
  62. }
  63. var xxx_messageInfo_CampaignBidModifier proto.InternalMessageInfo
  64. func (m *CampaignBidModifier) GetResourceName() string {
  65. if m != nil {
  66. return m.ResourceName
  67. }
  68. return ""
  69. }
  70. func (m *CampaignBidModifier) GetCampaign() *wrappers.StringValue {
  71. if m != nil {
  72. return m.Campaign
  73. }
  74. return nil
  75. }
  76. func (m *CampaignBidModifier) GetCriterionId() *wrappers.Int64Value {
  77. if m != nil {
  78. return m.CriterionId
  79. }
  80. return nil
  81. }
  82. func (m *CampaignBidModifier) GetBidModifier() *wrappers.DoubleValue {
  83. if m != nil {
  84. return m.BidModifier
  85. }
  86. return nil
  87. }
  88. type isCampaignBidModifier_Criterion interface {
  89. isCampaignBidModifier_Criterion()
  90. }
  91. type CampaignBidModifier_InteractionType struct {
  92. InteractionType *common.InteractionTypeInfo `protobuf:"bytes,5,opt,name=interaction_type,json=interactionType,proto3,oneof"`
  93. }
  94. func (*CampaignBidModifier_InteractionType) isCampaignBidModifier_Criterion() {}
  95. func (m *CampaignBidModifier) GetCriterion() isCampaignBidModifier_Criterion {
  96. if m != nil {
  97. return m.Criterion
  98. }
  99. return nil
  100. }
  101. func (m *CampaignBidModifier) GetInteractionType() *common.InteractionTypeInfo {
  102. if x, ok := m.GetCriterion().(*CampaignBidModifier_InteractionType); ok {
  103. return x.InteractionType
  104. }
  105. return nil
  106. }
  107. // XXX_OneofFuncs is for the internal use of the proto package.
  108. func (*CampaignBidModifier) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  109. return _CampaignBidModifier_OneofMarshaler, _CampaignBidModifier_OneofUnmarshaler, _CampaignBidModifier_OneofSizer, []interface{}{
  110. (*CampaignBidModifier_InteractionType)(nil),
  111. }
  112. }
  113. func _CampaignBidModifier_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  114. m := msg.(*CampaignBidModifier)
  115. // criterion
  116. switch x := m.Criterion.(type) {
  117. case *CampaignBidModifier_InteractionType:
  118. b.EncodeVarint(5<<3 | proto.WireBytes)
  119. if err := b.EncodeMessage(x.InteractionType); err != nil {
  120. return err
  121. }
  122. case nil:
  123. default:
  124. return fmt.Errorf("CampaignBidModifier.Criterion has unexpected type %T", x)
  125. }
  126. return nil
  127. }
  128. func _CampaignBidModifier_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  129. m := msg.(*CampaignBidModifier)
  130. switch tag {
  131. case 5: // criterion.interaction_type
  132. if wire != proto.WireBytes {
  133. return true, proto.ErrInternalBadWireType
  134. }
  135. msg := new(common.InteractionTypeInfo)
  136. err := b.DecodeMessage(msg)
  137. m.Criterion = &CampaignBidModifier_InteractionType{msg}
  138. return true, err
  139. default:
  140. return false, nil
  141. }
  142. }
  143. func _CampaignBidModifier_OneofSizer(msg proto.Message) (n int) {
  144. m := msg.(*CampaignBidModifier)
  145. // criterion
  146. switch x := m.Criterion.(type) {
  147. case *CampaignBidModifier_InteractionType:
  148. s := proto.Size(x.InteractionType)
  149. n += 1 // tag and wire
  150. n += proto.SizeVarint(uint64(s))
  151. n += s
  152. case nil:
  153. default:
  154. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  155. }
  156. return n
  157. }
  158. func init() {
  159. proto.RegisterType((*CampaignBidModifier)(nil), "google.ads.googleads.v0.resources.CampaignBidModifier")
  160. }
  161. func init() {
  162. proto.RegisterFile("google/ads/googleads/v0/resources/campaign_bid_modifier.proto", fileDescriptor_campaign_bid_modifier_8a4182815fbca687)
  163. }
  164. var fileDescriptor_campaign_bid_modifier_8a4182815fbca687 = []byte{
  165. // 425 bytes of a gzipped FileDescriptorProto
  166. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xd1, 0x8a, 0xd4, 0x30,
  167. 0x14, 0x86, 0x6d, 0x57, 0xc5, 0xcd, 0x8c, 0x28, 0xf5, 0xa6, 0xac, 0x22, 0xbb, 0xca, 0xc2, 0xde,
  168. 0x98, 0x16, 0x57, 0x44, 0x22, 0x2a, 0xad, 0xc2, 0x3a, 0x82, 0xb2, 0x54, 0xe9, 0x85, 0x14, 0x6a,
  169. 0xda, 0x64, 0x42, 0xa0, 0x4d, 0x4a, 0xd2, 0xae, 0xcc, 0x03, 0xf8, 0x22, 0x5e, 0xfa, 0x28, 0x3e,
  170. 0x87, 0x57, 0x3e, 0x85, 0xb4, 0x69, 0xc2, 0x88, 0x8e, 0xde, 0xfd, 0x6d, 0xfe, 0xef, 0x9c, 0xff,
  171. 0xe4, 0x04, 0x3c, 0x63, 0x52, 0xb2, 0x86, 0x46, 0x98, 0xe8, 0xc8, 0xc8, 0x51, 0x5d, 0xc4, 0x91,
  172. 0xa2, 0x5a, 0x0e, 0xaa, 0xa6, 0x3a, 0xaa, 0x71, 0xdb, 0x61, 0xce, 0x44, 0x59, 0x71, 0x52, 0xb6,
  173. 0x92, 0xf0, 0x35, 0xa7, 0x0a, 0x76, 0x4a, 0xf6, 0x32, 0x38, 0x32, 0x0c, 0xc4, 0x44, 0x43, 0x87,
  174. 0xc3, 0x8b, 0x18, 0x3a, 0xfc, 0xe0, 0xc1, 0xae, 0x0e, 0xb5, 0x6c, 0x5b, 0x29, 0xa2, 0x5a, 0xf1,
  175. 0x9e, 0x2a, 0x8e, 0x4d, 0xc5, 0x83, 0xbb, 0xb3, 0x7d, 0xfa, 0xaa, 0x86, 0x75, 0xf4, 0x59, 0xe1,
  176. 0xae, 0xa3, 0x4a, 0x9b, 0xf3, 0x7b, 0x3f, 0x7c, 0x70, 0xeb, 0xe5, 0x9c, 0x28, 0xe5, 0xe4, 0xed,
  177. 0x9c, 0x27, 0xb8, 0x0f, 0xae, 0xdb, 0x9e, 0xa5, 0xc0, 0x2d, 0x0d, 0xbd, 0x43, 0xef, 0x64, 0x3f,
  178. 0x5b, 0xda, 0x9f, 0xef, 0x70, 0x4b, 0x83, 0x27, 0xe0, 0x9a, 0x9d, 0x26, 0xf4, 0x0f, 0xbd, 0x93,
  179. 0xc5, 0xc3, 0x3b, 0x73, 0x6c, 0x68, 0xfb, 0xc1, 0xf7, 0xbd, 0xe2, 0x82, 0xe5, 0xb8, 0x19, 0x68,
  180. 0xe6, 0xdc, 0xc1, 0x73, 0xb0, 0x9c, 0x83, 0x4a, 0x51, 0x72, 0x12, 0xee, 0x4d, 0xf4, 0xed, 0x3f,
  181. 0xe8, 0x95, 0xe8, 0x1f, 0x3f, 0x32, 0xf0, 0xc2, 0x01, 0x2b, 0x12, 0xbc, 0x00, 0xcb, 0xed, 0xeb,
  182. 0x0b, 0x2f, 0xef, 0xe8, 0xfe, 0x4a, 0x0e, 0x55, 0x43, 0xe7, 0x02, 0xd5, 0xd6, 0x7c, 0x9f, 0xc0,
  183. 0x4d, 0x2e, 0x7a, 0xaa, 0x70, 0xdd, 0x8f, 0x11, 0xfa, 0x4d, 0x47, 0xc3, 0x2b, 0x53, 0x91, 0x53,
  184. 0xb8, 0x6b, 0x09, 0xe6, 0x86, 0xc7, 0x4c, 0x96, 0xfb, 0xb0, 0xe9, 0xe8, 0x4a, 0xac, 0xe5, 0xeb,
  185. 0x4b, 0xd9, 0x0d, 0xfe, 0xfb, 0xef, 0x74, 0x01, 0xf6, 0x5d, 0xe2, 0xf4, 0x8b, 0x0f, 0x8e, 0x6b,
  186. 0xd9, 0xc2, 0xff, 0xee, 0x37, 0x0d, 0xff, 0xb2, 0x8d, 0xf3, 0x71, 0x9c, 0x73, 0xef, 0xe3, 0x9b,
  187. 0x19, 0x67, 0xb2, 0xc1, 0x82, 0x41, 0xa9, 0x58, 0xc4, 0xa8, 0x98, 0x86, 0xb5, 0x6f, 0xa1, 0xe3,
  188. 0xfa, 0x1f, 0x8f, 0xef, 0xa9, 0x53, 0x5f, 0xfd, 0xbd, 0xb3, 0x24, 0xf9, 0xe6, 0x1f, 0x9d, 0x99,
  189. 0x92, 0x09, 0xd1, 0xd0, 0xc8, 0x51, 0xe5, 0x31, 0xcc, 0xac, 0xf3, 0xbb, 0xf5, 0x14, 0x09, 0xd1,
  190. 0x85, 0xf3, 0x14, 0x79, 0x5c, 0x38, 0xcf, 0x4f, 0xff, 0xd8, 0x1c, 0x20, 0x94, 0x10, 0x8d, 0x90,
  191. 0x73, 0x21, 0x94, 0xc7, 0x08, 0x39, 0x5f, 0x75, 0x75, 0x0a, 0x7b, 0xfa, 0x2b, 0x00, 0x00, 0xff,
  192. 0xff, 0x14, 0x76, 0xbf, 0xaa, 0x28, 0x03, 0x00, 0x00,
  193. }