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.
 
 
 

177 lines
8.1 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v0/services/carrier_constant_service.proto
  3. package services // import "google.golang.org/genproto/googleapis/ads/googleads/v0/services"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import resources "google.golang.org/genproto/googleapis/ads/googleads/v0/resources"
  8. import _ "google.golang.org/genproto/googleapis/api/annotations"
  9. import (
  10. context "golang.org/x/net/context"
  11. grpc "google.golang.org/grpc"
  12. )
  13. // Reference imports to suppress errors if they are not otherwise used.
  14. var _ = proto.Marshal
  15. var _ = fmt.Errorf
  16. var _ = math.Inf
  17. // This is a compile-time assertion to ensure that this generated file
  18. // is compatible with the proto package it is being compiled against.
  19. // A compilation error at this line likely means your copy of the
  20. // proto package needs to be updated.
  21. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  22. // Request message for
  23. // [CarrierConstantService.GetCarrierConstant][google.ads.googleads.v0.services.CarrierConstantService.GetCarrierConstant].
  24. type GetCarrierConstantRequest struct {
  25. // Resource name of the carrier constant to fetch.
  26. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
  27. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  28. XXX_unrecognized []byte `json:"-"`
  29. XXX_sizecache int32 `json:"-"`
  30. }
  31. func (m *GetCarrierConstantRequest) Reset() { *m = GetCarrierConstantRequest{} }
  32. func (m *GetCarrierConstantRequest) String() string { return proto.CompactTextString(m) }
  33. func (*GetCarrierConstantRequest) ProtoMessage() {}
  34. func (*GetCarrierConstantRequest) Descriptor() ([]byte, []int) {
  35. return fileDescriptor_carrier_constant_service_f107d8a55b6664af, []int{0}
  36. }
  37. func (m *GetCarrierConstantRequest) XXX_Unmarshal(b []byte) error {
  38. return xxx_messageInfo_GetCarrierConstantRequest.Unmarshal(m, b)
  39. }
  40. func (m *GetCarrierConstantRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  41. return xxx_messageInfo_GetCarrierConstantRequest.Marshal(b, m, deterministic)
  42. }
  43. func (dst *GetCarrierConstantRequest) XXX_Merge(src proto.Message) {
  44. xxx_messageInfo_GetCarrierConstantRequest.Merge(dst, src)
  45. }
  46. func (m *GetCarrierConstantRequest) XXX_Size() int {
  47. return xxx_messageInfo_GetCarrierConstantRequest.Size(m)
  48. }
  49. func (m *GetCarrierConstantRequest) XXX_DiscardUnknown() {
  50. xxx_messageInfo_GetCarrierConstantRequest.DiscardUnknown(m)
  51. }
  52. var xxx_messageInfo_GetCarrierConstantRequest proto.InternalMessageInfo
  53. func (m *GetCarrierConstantRequest) GetResourceName() string {
  54. if m != nil {
  55. return m.ResourceName
  56. }
  57. return ""
  58. }
  59. func init() {
  60. proto.RegisterType((*GetCarrierConstantRequest)(nil), "google.ads.googleads.v0.services.GetCarrierConstantRequest")
  61. }
  62. // Reference imports to suppress errors if they are not otherwise used.
  63. var _ context.Context
  64. var _ grpc.ClientConn
  65. // This is a compile-time assertion to ensure that this generated file
  66. // is compatible with the grpc package it is being compiled against.
  67. const _ = grpc.SupportPackageIsVersion4
  68. // CarrierConstantServiceClient is the client API for CarrierConstantService service.
  69. //
  70. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  71. type CarrierConstantServiceClient interface {
  72. // Returns the requested carrier constant in full detail.
  73. GetCarrierConstant(ctx context.Context, in *GetCarrierConstantRequest, opts ...grpc.CallOption) (*resources.CarrierConstant, error)
  74. }
  75. type carrierConstantServiceClient struct {
  76. cc *grpc.ClientConn
  77. }
  78. func NewCarrierConstantServiceClient(cc *grpc.ClientConn) CarrierConstantServiceClient {
  79. return &carrierConstantServiceClient{cc}
  80. }
  81. func (c *carrierConstantServiceClient) GetCarrierConstant(ctx context.Context, in *GetCarrierConstantRequest, opts ...grpc.CallOption) (*resources.CarrierConstant, error) {
  82. out := new(resources.CarrierConstant)
  83. err := c.cc.Invoke(ctx, "/google.ads.googleads.v0.services.CarrierConstantService/GetCarrierConstant", in, out, opts...)
  84. if err != nil {
  85. return nil, err
  86. }
  87. return out, nil
  88. }
  89. // CarrierConstantServiceServer is the server API for CarrierConstantService service.
  90. type CarrierConstantServiceServer interface {
  91. // Returns the requested carrier constant in full detail.
  92. GetCarrierConstant(context.Context, *GetCarrierConstantRequest) (*resources.CarrierConstant, error)
  93. }
  94. func RegisterCarrierConstantServiceServer(s *grpc.Server, srv CarrierConstantServiceServer) {
  95. s.RegisterService(&_CarrierConstantService_serviceDesc, srv)
  96. }
  97. func _CarrierConstantService_GetCarrierConstant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  98. in := new(GetCarrierConstantRequest)
  99. if err := dec(in); err != nil {
  100. return nil, err
  101. }
  102. if interceptor == nil {
  103. return srv.(CarrierConstantServiceServer).GetCarrierConstant(ctx, in)
  104. }
  105. info := &grpc.UnaryServerInfo{
  106. Server: srv,
  107. FullMethod: "/google.ads.googleads.v0.services.CarrierConstantService/GetCarrierConstant",
  108. }
  109. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  110. return srv.(CarrierConstantServiceServer).GetCarrierConstant(ctx, req.(*GetCarrierConstantRequest))
  111. }
  112. return interceptor(ctx, in, info, handler)
  113. }
  114. var _CarrierConstantService_serviceDesc = grpc.ServiceDesc{
  115. ServiceName: "google.ads.googleads.v0.services.CarrierConstantService",
  116. HandlerType: (*CarrierConstantServiceServer)(nil),
  117. Methods: []grpc.MethodDesc{
  118. {
  119. MethodName: "GetCarrierConstant",
  120. Handler: _CarrierConstantService_GetCarrierConstant_Handler,
  121. },
  122. },
  123. Streams: []grpc.StreamDesc{},
  124. Metadata: "google/ads/googleads/v0/services/carrier_constant_service.proto",
  125. }
  126. func init() {
  127. proto.RegisterFile("google/ads/googleads/v0/services/carrier_constant_service.proto", fileDescriptor_carrier_constant_service_f107d8a55b6664af)
  128. }
  129. var fileDescriptor_carrier_constant_service_f107d8a55b6664af = []byte{
  130. // 356 bytes of a gzipped FileDescriptorProto
  131. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0xc1, 0x4a, 0xf3, 0x40,
  132. 0x18, 0x24, 0xf9, 0xe1, 0x07, 0x83, 0x5e, 0x72, 0x10, 0xad, 0x1e, 0x4a, 0x2d, 0x52, 0x3c, 0xec,
  133. 0x86, 0x7a, 0x91, 0x2d, 0xa2, 0x69, 0x0f, 0xf5, 0x24, 0xa5, 0x42, 0x0f, 0x12, 0x28, 0x6b, 0xb2,
  134. 0x2c, 0x81, 0x76, 0xb7, 0xee, 0xb7, 0xcd, 0x45, 0xbc, 0xf4, 0x15, 0x7c, 0x03, 0x8f, 0xde, 0x7d,
  135. 0x09, 0x4f, 0x82, 0xaf, 0xe0, 0xc9, 0xa7, 0x90, 0x74, 0xb3, 0x81, 0xd6, 0x86, 0xde, 0x86, 0xfd,
  136. 0x66, 0xe6, 0x9b, 0x6f, 0x12, 0xef, 0x8a, 0x4b, 0xc9, 0x27, 0x0c, 0xd3, 0x04, 0xb0, 0x81, 0x39,
  137. 0xca, 0x02, 0x0c, 0x4c, 0x65, 0x69, 0xcc, 0x00, 0xc7, 0x54, 0xa9, 0x94, 0xa9, 0x71, 0x2c, 0x05,
  138. 0x68, 0x2a, 0xf4, 0xb8, 0x98, 0xa0, 0x99, 0x92, 0x5a, 0xfa, 0x75, 0xa3, 0x42, 0x34, 0x01, 0x54,
  139. 0x1a, 0xa0, 0x2c, 0x40, 0xd6, 0xa0, 0x76, 0x51, 0xb5, 0x42, 0x31, 0x90, 0x73, 0xb5, 0x69, 0x87,
  140. 0xf1, 0xae, 0x1d, 0x5b, 0xe5, 0x2c, 0xc5, 0x54, 0x08, 0xa9, 0xa9, 0x4e, 0xa5, 0x00, 0x33, 0x6d,
  141. 0x5c, 0x7b, 0x87, 0x7d, 0xa6, 0x7b, 0x46, 0xda, 0x2b, 0x94, 0x43, 0xf6, 0x38, 0x67, 0xa0, 0xfd,
  142. 0x13, 0x6f, 0xcf, 0xda, 0x8f, 0x05, 0x9d, 0xb2, 0x03, 0xa7, 0xee, 0xb4, 0x76, 0x86, 0xbb, 0xf6,
  143. 0xf1, 0x96, 0x4e, 0x59, 0xfb, 0xd3, 0xf1, 0xf6, 0xd7, 0xf4, 0x77, 0x26, 0xb5, 0xff, 0xee, 0x78,
  144. 0xfe, 0x5f, 0x77, 0xbf, 0x83, 0xb6, 0x9d, 0x8b, 0x2a, 0x33, 0xd5, 0xda, 0x95, 0xe2, 0xb2, 0x09,
  145. 0xb4, 0x26, 0x6d, 0xa0, 0xc5, 0xd7, 0xf7, 0x8b, 0xdb, 0xf2, 0x4f, 0xf3, 0xc2, 0x9e, 0x56, 0x4e,
  146. 0xba, 0x8c, 0x57, 0xb9, 0x80, 0xcf, 0x9e, 0xbb, 0x0b, 0xd7, 0x6b, 0xc6, 0x72, 0xba, 0x35, 0x66,
  147. 0xf7, 0x68, 0xf3, 0xe1, 0x83, 0xbc, 0xda, 0x81, 0x73, 0x7f, 0x53, 0x18, 0x70, 0x39, 0xa1, 0x82,
  148. 0x23, 0xa9, 0x38, 0xe6, 0x4c, 0x2c, 0x8b, 0xb7, 0x1f, 0x71, 0x96, 0x42, 0xf5, 0x6f, 0xd3, 0xb1,
  149. 0xe0, 0xd5, 0xfd, 0xd7, 0x0f, 0xc3, 0x37, 0xb7, 0xde, 0x37, 0x86, 0x61, 0x02, 0xc8, 0xc0, 0x1c,
  150. 0x8d, 0x02, 0x54, 0x2c, 0x86, 0x0f, 0x4b, 0x89, 0xc2, 0x04, 0xa2, 0x92, 0x12, 0x8d, 0x82, 0xc8,
  151. 0x52, 0x7e, 0xdc, 0xa6, 0x79, 0x27, 0x24, 0x4c, 0x80, 0x90, 0x92, 0x44, 0xc8, 0x28, 0x20, 0xc4,
  152. 0xd2, 0x1e, 0xfe, 0x2f, 0x73, 0x9e, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x48, 0x79, 0xe9, 0xbd,
  153. 0xdd, 0x02, 0x00, 0x00,
  154. }