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.
 
 
 

178 lines
8.2 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v0/services/ad_schedule_view_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. // [AdScheduleViewService.GetAdScheduleView][google.ads.googleads.v0.services.AdScheduleViewService.GetAdScheduleView].
  24. type GetAdScheduleViewRequest struct {
  25. // The resource name of the ad schedule view 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 *GetAdScheduleViewRequest) Reset() { *m = GetAdScheduleViewRequest{} }
  32. func (m *GetAdScheduleViewRequest) String() string { return proto.CompactTextString(m) }
  33. func (*GetAdScheduleViewRequest) ProtoMessage() {}
  34. func (*GetAdScheduleViewRequest) Descriptor() ([]byte, []int) {
  35. return fileDescriptor_ad_schedule_view_service_d080b6815f203272, []int{0}
  36. }
  37. func (m *GetAdScheduleViewRequest) XXX_Unmarshal(b []byte) error {
  38. return xxx_messageInfo_GetAdScheduleViewRequest.Unmarshal(m, b)
  39. }
  40. func (m *GetAdScheduleViewRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  41. return xxx_messageInfo_GetAdScheduleViewRequest.Marshal(b, m, deterministic)
  42. }
  43. func (dst *GetAdScheduleViewRequest) XXX_Merge(src proto.Message) {
  44. xxx_messageInfo_GetAdScheduleViewRequest.Merge(dst, src)
  45. }
  46. func (m *GetAdScheduleViewRequest) XXX_Size() int {
  47. return xxx_messageInfo_GetAdScheduleViewRequest.Size(m)
  48. }
  49. func (m *GetAdScheduleViewRequest) XXX_DiscardUnknown() {
  50. xxx_messageInfo_GetAdScheduleViewRequest.DiscardUnknown(m)
  51. }
  52. var xxx_messageInfo_GetAdScheduleViewRequest proto.InternalMessageInfo
  53. func (m *GetAdScheduleViewRequest) GetResourceName() string {
  54. if m != nil {
  55. return m.ResourceName
  56. }
  57. return ""
  58. }
  59. func init() {
  60. proto.RegisterType((*GetAdScheduleViewRequest)(nil), "google.ads.googleads.v0.services.GetAdScheduleViewRequest")
  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. // AdScheduleViewServiceClient is the client API for AdScheduleViewService 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 AdScheduleViewServiceClient interface {
  72. // Returns the requested ad schedule view in full detail.
  73. GetAdScheduleView(ctx context.Context, in *GetAdScheduleViewRequest, opts ...grpc.CallOption) (*resources.AdScheduleView, error)
  74. }
  75. type adScheduleViewServiceClient struct {
  76. cc *grpc.ClientConn
  77. }
  78. func NewAdScheduleViewServiceClient(cc *grpc.ClientConn) AdScheduleViewServiceClient {
  79. return &adScheduleViewServiceClient{cc}
  80. }
  81. func (c *adScheduleViewServiceClient) GetAdScheduleView(ctx context.Context, in *GetAdScheduleViewRequest, opts ...grpc.CallOption) (*resources.AdScheduleView, error) {
  82. out := new(resources.AdScheduleView)
  83. err := c.cc.Invoke(ctx, "/google.ads.googleads.v0.services.AdScheduleViewService/GetAdScheduleView", in, out, opts...)
  84. if err != nil {
  85. return nil, err
  86. }
  87. return out, nil
  88. }
  89. // AdScheduleViewServiceServer is the server API for AdScheduleViewService service.
  90. type AdScheduleViewServiceServer interface {
  91. // Returns the requested ad schedule view in full detail.
  92. GetAdScheduleView(context.Context, *GetAdScheduleViewRequest) (*resources.AdScheduleView, error)
  93. }
  94. func RegisterAdScheduleViewServiceServer(s *grpc.Server, srv AdScheduleViewServiceServer) {
  95. s.RegisterService(&_AdScheduleViewService_serviceDesc, srv)
  96. }
  97. func _AdScheduleViewService_GetAdScheduleView_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  98. in := new(GetAdScheduleViewRequest)
  99. if err := dec(in); err != nil {
  100. return nil, err
  101. }
  102. if interceptor == nil {
  103. return srv.(AdScheduleViewServiceServer).GetAdScheduleView(ctx, in)
  104. }
  105. info := &grpc.UnaryServerInfo{
  106. Server: srv,
  107. FullMethod: "/google.ads.googleads.v0.services.AdScheduleViewService/GetAdScheduleView",
  108. }
  109. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  110. return srv.(AdScheduleViewServiceServer).GetAdScheduleView(ctx, req.(*GetAdScheduleViewRequest))
  111. }
  112. return interceptor(ctx, in, info, handler)
  113. }
  114. var _AdScheduleViewService_serviceDesc = grpc.ServiceDesc{
  115. ServiceName: "google.ads.googleads.v0.services.AdScheduleViewService",
  116. HandlerType: (*AdScheduleViewServiceServer)(nil),
  117. Methods: []grpc.MethodDesc{
  118. {
  119. MethodName: "GetAdScheduleView",
  120. Handler: _AdScheduleViewService_GetAdScheduleView_Handler,
  121. },
  122. },
  123. Streams: []grpc.StreamDesc{},
  124. Metadata: "google/ads/googleads/v0/services/ad_schedule_view_service.proto",
  125. }
  126. func init() {
  127. proto.RegisterFile("google/ads/googleads/v0/services/ad_schedule_view_service.proto", fileDescriptor_ad_schedule_view_service_d080b6815f203272)
  128. }
  129. var fileDescriptor_ad_schedule_view_service_d080b6815f203272 = []byte{
  130. // 370 bytes of a gzipped FileDescriptorProto
  131. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xcf, 0x4a, 0xeb, 0x40,
  132. 0x14, 0xc6, 0x49, 0x2e, 0x5c, 0xb8, 0xe1, 0xba, 0x30, 0x20, 0x94, 0xe0, 0xa2, 0xd4, 0x2e, 0xa4,
  133. 0x8b, 0x99, 0xd4, 0x6e, 0x74, 0x44, 0x4a, 0xba, 0xa9, 0x2b, 0x29, 0x2d, 0x64, 0x21, 0x81, 0x30,
  134. 0x66, 0x86, 0x18, 0x68, 0x32, 0x35, 0x27, 0x49, 0x17, 0xe2, 0x42, 0x5f, 0xc1, 0x37, 0x70, 0xe9,
  135. 0x3b, 0xf8, 0x02, 0x6e, 0x5d, 0xf8, 0x02, 0xae, 0x7c, 0x0a, 0x49, 0x27, 0x13, 0x08, 0x36, 0x74,
  136. 0xf7, 0x31, 0xe7, 0xfb, 0x7d, 0xe7, 0x4f, 0x62, 0x8c, 0x43, 0x21, 0xc2, 0x25, 0xc7, 0x94, 0x01,
  137. 0x96, 0xb2, 0x54, 0x85, 0x8d, 0x81, 0xa7, 0x45, 0x14, 0x70, 0xc0, 0x94, 0xf9, 0x10, 0xdc, 0x72,
  138. 0x96, 0x2f, 0xb9, 0x5f, 0x44, 0x7c, 0xed, 0x57, 0x15, 0xb4, 0x4a, 0x45, 0x26, 0xcc, 0xae, 0xa4,
  139. 0x10, 0x65, 0x80, 0xea, 0x00, 0x54, 0xd8, 0x48, 0x05, 0x58, 0xa7, 0x6d, 0x2d, 0x52, 0x0e, 0x22,
  140. 0x4f, 0xb7, 0xf5, 0x90, 0xd9, 0xd6, 0xa1, 0x22, 0x57, 0x11, 0xa6, 0x49, 0x22, 0x32, 0x9a, 0x45,
  141. 0x22, 0x01, 0x59, 0xed, 0x8d, 0x8d, 0xce, 0x94, 0x67, 0x0e, 0x5b, 0x54, 0xa4, 0x1b, 0xf1, 0xf5,
  142. 0x9c, 0xdf, 0xe5, 0x1c, 0x32, 0xf3, 0xc8, 0xd8, 0x53, 0xe9, 0x7e, 0x42, 0x63, 0xde, 0xd1, 0xba,
  143. 0xda, 0xf1, 0xbf, 0xf9, 0x7f, 0xf5, 0x78, 0x45, 0x63, 0x7e, 0xf2, 0xa9, 0x19, 0x07, 0x4d, 0x7c,
  144. 0x21, 0x67, 0x36, 0xdf, 0x34, 0x63, 0xff, 0x57, 0xb6, 0x49, 0xd0, 0xae, 0x5d, 0x51, 0xdb, 0x40,
  145. 0xd6, 0xb0, 0x95, 0xad, 0xaf, 0x80, 0x9a, 0x64, 0xef, 0xec, 0xe9, 0xe3, 0xeb, 0x59, 0x1f, 0x99,
  146. 0xc3, 0xf2, 0x56, 0xf7, 0x8d, 0x75, 0x2e, 0x82, 0x1c, 0x32, 0x11, 0xf3, 0x14, 0xf0, 0x00, 0xd3,
  147. 0x06, 0x06, 0x78, 0xf0, 0x30, 0x79, 0xd4, 0x8d, 0x7e, 0x20, 0xe2, 0x9d, 0xf3, 0x4e, 0xac, 0xad,
  148. 0xfb, 0xcf, 0xca, 0xfb, 0xce, 0xb4, 0xeb, 0xcb, 0x8a, 0x0f, 0xc5, 0x92, 0x26, 0x21, 0x12, 0x69,
  149. 0x88, 0x43, 0x9e, 0x6c, 0xae, 0xaf, 0xbe, 0xe4, 0x2a, 0x82, 0xf6, 0x7f, 0xe7, 0x5c, 0x89, 0x17,
  150. 0xfd, 0xcf, 0xd4, 0x71, 0x5e, 0xf5, 0xee, 0x54, 0x06, 0x3a, 0x0c, 0x90, 0x94, 0xa5, 0x72, 0x6d,
  151. 0x54, 0x35, 0x86, 0x77, 0x65, 0xf1, 0x1c, 0x06, 0x5e, 0x6d, 0xf1, 0x5c, 0xdb, 0x53, 0x96, 0x6f,
  152. 0xbd, 0x2f, 0xdf, 0x09, 0x71, 0x18, 0x10, 0x52, 0x9b, 0x08, 0x71, 0x6d, 0x42, 0x94, 0xed, 0xe6,
  153. 0xef, 0x66, 0xce, 0xd1, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3a, 0xfb, 0x20, 0x21, 0xe2, 0x02,
  154. 0x00, 0x00,
  155. }