blob: 32f6da0f5d0000d8ab3fd2b91211e7a813110772 [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v1/services/feed_service.proto
package services
import (
context "context"
fmt "fmt"
math "math"
proto "github.com/golang/protobuf/proto"
resources "google.golang.org/genproto/googleapis/ads/googleads/v1/resources"
_ "google.golang.org/genproto/googleapis/api/annotations"
status "google.golang.org/genproto/googleapis/rpc/status"
field_mask "google.golang.org/genproto/protobuf/field_mask"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status1 "google.golang.org/grpc/status"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Request message for [FeedService.GetFeed][google.ads.googleads.v1.services.FeedService.GetFeed].
type GetFeedRequest struct {
// The resource name of the feed to fetch.
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetFeedRequest) Reset() { *m = GetFeedRequest{} }
func (m *GetFeedRequest) String() string { return proto.CompactTextString(m) }
func (*GetFeedRequest) ProtoMessage() {}
func (*GetFeedRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_3b158f21a9b50a59, []int{0}
}
func (m *GetFeedRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFeedRequest.Unmarshal(m, b)
}
func (m *GetFeedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFeedRequest.Marshal(b, m, deterministic)
}
func (m *GetFeedRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFeedRequest.Merge(m, src)
}
func (m *GetFeedRequest) XXX_Size() int {
return xxx_messageInfo_GetFeedRequest.Size(m)
}
func (m *GetFeedRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetFeedRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetFeedRequest proto.InternalMessageInfo
func (m *GetFeedRequest) GetResourceName() string {
if m != nil {
return m.ResourceName
}
return ""
}
// Request message for [FeedService.MutateFeeds][google.ads.googleads.v1.services.FeedService.MutateFeeds].
type MutateFeedsRequest struct {
// The ID of the customer whose feeds are being modified.
CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"`
// The list of operations to perform on individual feeds.
Operations []*FeedOperation `protobuf:"bytes,2,rep,name=operations,proto3" json:"operations,omitempty"`
// If true, successful operations will be carried out and invalid
// operations will return errors. If false, all operations will be carried
// out in one transaction if and only if they are all valid.
// Default is false.
PartialFailure bool `protobuf:"varint,3,opt,name=partial_failure,json=partialFailure,proto3" json:"partial_failure,omitempty"`
// If true, the request is validated but not executed. Only errors are
// returned, not results.
ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *MutateFeedsRequest) Reset() { *m = MutateFeedsRequest{} }
func (m *MutateFeedsRequest) String() string { return proto.CompactTextString(m) }
func (*MutateFeedsRequest) ProtoMessage() {}
func (*MutateFeedsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_3b158f21a9b50a59, []int{1}
}
func (m *MutateFeedsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MutateFeedsRequest.Unmarshal(m, b)
}
func (m *MutateFeedsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MutateFeedsRequest.Marshal(b, m, deterministic)
}
func (m *MutateFeedsRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_MutateFeedsRequest.Merge(m, src)
}
func (m *MutateFeedsRequest) XXX_Size() int {
return xxx_messageInfo_MutateFeedsRequest.Size(m)
}
func (m *MutateFeedsRequest) XXX_DiscardUnknown() {
xxx_messageInfo_MutateFeedsRequest.DiscardUnknown(m)
}
var xxx_messageInfo_MutateFeedsRequest proto.InternalMessageInfo
func (m *MutateFeedsRequest) GetCustomerId() string {
if m != nil {
return m.CustomerId
}
return ""
}
func (m *MutateFeedsRequest) GetOperations() []*FeedOperation {
if m != nil {
return m.Operations
}
return nil
}
func (m *MutateFeedsRequest) GetPartialFailure() bool {
if m != nil {
return m.PartialFailure
}
return false
}
func (m *MutateFeedsRequest) GetValidateOnly() bool {
if m != nil {
return m.ValidateOnly
}
return false
}
// A single operation (create, update, remove) on an feed.
type FeedOperation struct {
// FieldMask that determines which resource fields are modified in an update.
UpdateMask *field_mask.FieldMask `protobuf:"bytes,4,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
// The mutate operation.
//
// Types that are valid to be assigned to Operation:
// *FeedOperation_Create
// *FeedOperation_Update
// *FeedOperation_Remove
Operation isFeedOperation_Operation `protobuf_oneof:"operation"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *FeedOperation) Reset() { *m = FeedOperation{} }
func (m *FeedOperation) String() string { return proto.CompactTextString(m) }
func (*FeedOperation) ProtoMessage() {}
func (*FeedOperation) Descriptor() ([]byte, []int) {
return fileDescriptor_3b158f21a9b50a59, []int{2}
}
func (m *FeedOperation) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FeedOperation.Unmarshal(m, b)
}
func (m *FeedOperation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FeedOperation.Marshal(b, m, deterministic)
}
func (m *FeedOperation) XXX_Merge(src proto.Message) {
xxx_messageInfo_FeedOperation.Merge(m, src)
}
func (m *FeedOperation) XXX_Size() int {
return xxx_messageInfo_FeedOperation.Size(m)
}
func (m *FeedOperation) XXX_DiscardUnknown() {
xxx_messageInfo_FeedOperation.DiscardUnknown(m)
}
var xxx_messageInfo_FeedOperation proto.InternalMessageInfo
func (m *FeedOperation) GetUpdateMask() *field_mask.FieldMask {
if m != nil {
return m.UpdateMask
}
return nil
}
type isFeedOperation_Operation interface {
isFeedOperation_Operation()
}
type FeedOperation_Create struct {
Create *resources.Feed `protobuf:"bytes,1,opt,name=create,proto3,oneof"`
}
type FeedOperation_Update struct {
Update *resources.Feed `protobuf:"bytes,2,opt,name=update,proto3,oneof"`
}
type FeedOperation_Remove struct {
Remove string `protobuf:"bytes,3,opt,name=remove,proto3,oneof"`
}
func (*FeedOperation_Create) isFeedOperation_Operation() {}
func (*FeedOperation_Update) isFeedOperation_Operation() {}
func (*FeedOperation_Remove) isFeedOperation_Operation() {}
func (m *FeedOperation) GetOperation() isFeedOperation_Operation {
if m != nil {
return m.Operation
}
return nil
}
func (m *FeedOperation) GetCreate() *resources.Feed {
if x, ok := m.GetOperation().(*FeedOperation_Create); ok {
return x.Create
}
return nil
}
func (m *FeedOperation) GetUpdate() *resources.Feed {
if x, ok := m.GetOperation().(*FeedOperation_Update); ok {
return x.Update
}
return nil
}
func (m *FeedOperation) GetRemove() string {
if x, ok := m.GetOperation().(*FeedOperation_Remove); ok {
return x.Remove
}
return ""
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*FeedOperation) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*FeedOperation_Create)(nil),
(*FeedOperation_Update)(nil),
(*FeedOperation_Remove)(nil),
}
}
// Response message for an feed mutate.
type MutateFeedsResponse struct {
// Errors that pertain to operation failures in the partial failure mode.
// Returned only when partial_failure = true and all errors occur inside the
// operations. If any errors occur outside the operations (e.g. auth errors),
// we return an RPC level error.
PartialFailureError *status.Status `protobuf:"bytes,3,opt,name=partial_failure_error,json=partialFailureError,proto3" json:"partial_failure_error,omitempty"`
// All results for the mutate.
Results []*MutateFeedResult `protobuf:"bytes,2,rep,name=results,proto3" json:"results,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *MutateFeedsResponse) Reset() { *m = MutateFeedsResponse{} }
func (m *MutateFeedsResponse) String() string { return proto.CompactTextString(m) }
func (*MutateFeedsResponse) ProtoMessage() {}
func (*MutateFeedsResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_3b158f21a9b50a59, []int{3}
}
func (m *MutateFeedsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MutateFeedsResponse.Unmarshal(m, b)
}
func (m *MutateFeedsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MutateFeedsResponse.Marshal(b, m, deterministic)
}
func (m *MutateFeedsResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MutateFeedsResponse.Merge(m, src)
}
func (m *MutateFeedsResponse) XXX_Size() int {
return xxx_messageInfo_MutateFeedsResponse.Size(m)
}
func (m *MutateFeedsResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MutateFeedsResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MutateFeedsResponse proto.InternalMessageInfo
func (m *MutateFeedsResponse) GetPartialFailureError() *status.Status {
if m != nil {
return m.PartialFailureError
}
return nil
}
func (m *MutateFeedsResponse) GetResults() []*MutateFeedResult {
if m != nil {
return m.Results
}
return nil
}
// The result for the feed mutate.
type MutateFeedResult struct {
// Returned for successful operations.
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *MutateFeedResult) Reset() { *m = MutateFeedResult{} }
func (m *MutateFeedResult) String() string { return proto.CompactTextString(m) }
func (*MutateFeedResult) ProtoMessage() {}
func (*MutateFeedResult) Descriptor() ([]byte, []int) {
return fileDescriptor_3b158f21a9b50a59, []int{4}
}
func (m *MutateFeedResult) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MutateFeedResult.Unmarshal(m, b)
}
func (m *MutateFeedResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MutateFeedResult.Marshal(b, m, deterministic)
}
func (m *MutateFeedResult) XXX_Merge(src proto.Message) {
xxx_messageInfo_MutateFeedResult.Merge(m, src)
}
func (m *MutateFeedResult) XXX_Size() int {
return xxx_messageInfo_MutateFeedResult.Size(m)
}
func (m *MutateFeedResult) XXX_DiscardUnknown() {
xxx_messageInfo_MutateFeedResult.DiscardUnknown(m)
}
var xxx_messageInfo_MutateFeedResult proto.InternalMessageInfo
func (m *MutateFeedResult) GetResourceName() string {
if m != nil {
return m.ResourceName
}
return ""
}
func init() {
proto.RegisterType((*GetFeedRequest)(nil), "google.ads.googleads.v1.services.GetFeedRequest")
proto.RegisterType((*MutateFeedsRequest)(nil), "google.ads.googleads.v1.services.MutateFeedsRequest")
proto.RegisterType((*FeedOperation)(nil), "google.ads.googleads.v1.services.FeedOperation")
proto.RegisterType((*MutateFeedsResponse)(nil), "google.ads.googleads.v1.services.MutateFeedsResponse")
proto.RegisterType((*MutateFeedResult)(nil), "google.ads.googleads.v1.services.MutateFeedResult")
}
func init() {
proto.RegisterFile("google/ads/googleads/v1/services/feed_service.proto", fileDescriptor_3b158f21a9b50a59)
}
var fileDescriptor_3b158f21a9b50a59 = []byte{
// 703 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xdd, 0x6a, 0xd4, 0x40,
0x14, 0x36, 0x5b, 0x69, 0xed, 0xa4, 0xad, 0x65, 0x8a, 0x18, 0x56, 0xc1, 0x25, 0x16, 0x5a, 0x17,
0xc9, 0xb8, 0x5b, 0x8b, 0x90, 0xd2, 0x8b, 0x14, 0xdc, 0x56, 0xb0, 0xb6, 0xa4, 0xd0, 0x0b, 0x59,
0x08, 0xd3, 0x64, 0x76, 0x09, 0x4d, 0x32, 0x71, 0x66, 0xb2, 0x50, 0x4a, 0x6f, 0x7c, 0x05, 0xf1,
0x05, 0xbc, 0xd4, 0x2b, 0x5f, 0xa3, 0xb7, 0xfa, 0x08, 0x5e, 0xf9, 0x00, 0x8a, 0x77, 0x32, 0x99,
0xcc, 0xfe, 0x14, 0xca, 0xb6, 0x77, 0x27, 0x67, 0xbe, 0xef, 0x3b, 0xdf, 0x9c, 0x33, 0x27, 0x60,
0xa3, 0x4f, 0x69, 0x3f, 0x21, 0x08, 0x47, 0x1c, 0xa9, 0x50, 0x46, 0x83, 0x16, 0xe2, 0x84, 0x0d,
0xe2, 0x90, 0x70, 0xd4, 0x23, 0x24, 0x0a, 0xaa, 0x2f, 0x27, 0x67, 0x54, 0x50, 0xd8, 0x50, 0x48,
0x07, 0x47, 0xdc, 0x19, 0x92, 0x9c, 0x41, 0xcb, 0xd1, 0xa4, 0xfa, 0xf3, 0xeb, 0x64, 0x19, 0xe1,
0xb4, 0x60, 0x5a, 0x57, 0xe9, 0xd5, 0x1f, 0x6b, 0x74, 0x1e, 0x23, 0x9c, 0x65, 0x54, 0x60, 0x11,
0xd3, 0x8c, 0x57, 0xa7, 0x55, 0x35, 0x54, 0x7e, 0x9d, 0x14, 0x3d, 0xd4, 0x8b, 0x49, 0x12, 0x05,
0x29, 0xe6, 0xa7, 0x15, 0xe2, 0x61, 0x85, 0x60, 0x79, 0x88, 0xb8, 0xc0, 0xa2, 0xe0, 0x57, 0x0e,
0xa4, 0x70, 0x98, 0xc4, 0x24, 0x13, 0xea, 0xc0, 0xde, 0x04, 0x4b, 0xbb, 0x44, 0x74, 0x08, 0x89,
0x7c, 0xf2, 0xa1, 0x20, 0x5c, 0xc0, 0xa7, 0x60, 0x51, 0x7b, 0x0b, 0x32, 0x9c, 0x12, 0xcb, 0x68,
0x18, 0xeb, 0xf3, 0xfe, 0x82, 0x4e, 0xbe, 0xc3, 0x29, 0xb1, 0x7f, 0x1a, 0x00, 0xee, 0x17, 0x02,
0x0b, 0x22, 0xa9, 0x5c, 0x73, 0x9f, 0x00, 0x33, 0x2c, 0xb8, 0xa0, 0x29, 0x61, 0x41, 0x1c, 0x55,
0x4c, 0xa0, 0x53, 0x6f, 0x22, 0x78, 0x00, 0x00, 0xcd, 0x09, 0x53, 0xd7, 0xb2, 0x6a, 0x8d, 0x99,
0x75, 0xb3, 0x8d, 0x9c, 0x69, 0x5d, 0x74, 0x64, 0x91, 0x03, 0xcd, 0xf3, 0xc7, 0x24, 0xe0, 0x1a,
0xb8, 0x9f, 0x63, 0x26, 0x62, 0x9c, 0x04, 0x3d, 0x1c, 0x27, 0x05, 0x23, 0xd6, 0x4c, 0xc3, 0x58,
0xbf, 0xe7, 0x2f, 0x55, 0xe9, 0x8e, 0xca, 0xca, 0x6b, 0x0d, 0x70, 0x12, 0x47, 0x58, 0x90, 0x80,
0x66, 0xc9, 0x99, 0x75, 0xb7, 0x84, 0x2d, 0xe8, 0xe4, 0x41, 0x96, 0x9c, 0xd9, 0xff, 0x0c, 0xb0,
0x38, 0x51, 0x0b, 0x6e, 0x01, 0xb3, 0xc8, 0x4b, 0x92, 0x6c, 0x73, 0x49, 0x32, 0xdb, 0x75, 0xed,
0x58, 0x4f, 0xc2, 0xe9, 0xc8, 0x49, 0xec, 0x63, 0x7e, 0xea, 0x03, 0x05, 0x97, 0x31, 0xf4, 0xc0,
0x6c, 0xc8, 0x08, 0x16, 0xaa, 0x87, 0x66, 0x7b, 0xed, 0xda, 0x9b, 0x0e, 0x5f, 0x43, 0x79, 0xd5,
0xbd, 0x3b, 0x7e, 0x45, 0x94, 0x12, 0x4a, 0xd0, 0xaa, 0xdd, 0x5a, 0x42, 0x11, 0xa1, 0x05, 0x66,
0x19, 0x49, 0xe9, 0x40, 0x75, 0x66, 0x5e, 0x9e, 0xa8, 0xef, 0x1d, 0x13, 0xcc, 0x0f, 0x5b, 0x69,
0x7f, 0x33, 0xc0, 0xca, 0xc4, 0x48, 0x79, 0x4e, 0x33, 0x4e, 0x60, 0x07, 0x3c, 0xb8, 0xd2, 0xe1,
0x80, 0x30, 0x46, 0x59, 0xa9, 0x66, 0xb6, 0xa1, 0x36, 0xc4, 0xf2, 0xd0, 0x39, 0x2a, 0xdf, 0x9c,
0xbf, 0x32, 0xd9, 0xfb, 0xd7, 0x12, 0x0e, 0xdf, 0x82, 0x39, 0x46, 0x78, 0x91, 0x08, 0x3d, 0xf7,
0xf6, 0xf4, 0xb9, 0x8f, 0xfc, 0xf8, 0x25, 0xd5, 0xd7, 0x12, 0xf6, 0x2b, 0xb0, 0x7c, 0xf5, 0xf0,
0x46, 0x2f, 0xb7, 0xfd, 0xa7, 0x06, 0x4c, 0xc9, 0x39, 0x52, 0x35, 0xe0, 0x67, 0x03, 0xcc, 0x55,
0x1b, 0x00, 0x5f, 0x4c, 0x77, 0x34, 0xb9, 0x2c, 0xf5, 0x9b, 0x8e, 0xc3, 0x46, 0x1f, 0x7f, 0xfc,
0xfa, 0x54, 0x7b, 0x06, 0xd7, 0xe4, 0xee, 0x9f, 0x4f, 0xd8, 0xdc, 0xd6, 0xfb, 0xc1, 0x51, 0xb3,
0xfc, 0x19, 0x70, 0xd4, 0xbc, 0x80, 0xdf, 0x0d, 0x60, 0x8e, 0x8d, 0x03, 0xbe, 0xbc, 0x4d, 0xb7,
0xf4, 0x42, 0xd6, 0x37, 0x6f, 0xc9, 0x52, 0x33, 0xb7, 0x37, 0x4b, 0xb7, 0xc8, 0x6e, 0x4a, 0xb7,
0x23, 0x7b, 0xe7, 0x63, 0xcb, 0xbd, 0xdd, 0xbc, 0x50, 0x66, 0xdd, 0xb4, 0x14, 0x70, 0x8d, 0x66,
0xfd, 0xd1, 0xa5, 0x67, 0x8d, 0x8a, 0x54, 0x51, 0x1e, 0x73, 0x27, 0xa4, 0xe9, 0xce, 0x5f, 0x03,
0xac, 0x86, 0x34, 0x9d, 0x6a, 0x68, 0x67, 0x79, 0x6c, 0x3c, 0x87, 0x72, 0xc1, 0x0e, 0x8d, 0xf7,
0x7b, 0x15, 0xab, 0x4f, 0x13, 0x9c, 0xf5, 0x1d, 0xca, 0xfa, 0xa8, 0x4f, 0xb2, 0x72, 0xfd, 0xd0,
0xa8, 0xce, 0xf5, 0x3f, 0xef, 0x2d, 0x1d, 0x7c, 0xa9, 0xcd, 0xec, 0x7a, 0xde, 0xd7, 0x5a, 0x63,
0x57, 0x09, 0x7a, 0x11, 0x77, 0x54, 0x28, 0xa3, 0xe3, 0x96, 0x53, 0x15, 0xe6, 0x97, 0x1a, 0xd2,
0xf5, 0x22, 0xde, 0x1d, 0x42, 0xba, 0xc7, 0xad, 0xae, 0x86, 0xfc, 0xae, 0xad, 0xaa, 0xbc, 0xeb,
0x7a, 0x11, 0x77, 0xdd, 0x21, 0xc8, 0x75, 0x8f, 0x5b, 0xae, 0xab, 0x61, 0x27, 0xb3, 0xa5, 0xcf,
0x8d, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x55, 0x5e, 0x4d, 0x63, 0x06, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConnInterface
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion6
// FeedServiceClient is the client API for FeedService service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type FeedServiceClient interface {
// Returns the requested feed in full detail.
GetFeed(ctx context.Context, in *GetFeedRequest, opts ...grpc.CallOption) (*resources.Feed, error)
// Creates, updates, or removes feeds. Operation statuses are
// returned.
MutateFeeds(ctx context.Context, in *MutateFeedsRequest, opts ...grpc.CallOption) (*MutateFeedsResponse, error)
}
type feedServiceClient struct {
cc grpc.ClientConnInterface
}
func NewFeedServiceClient(cc grpc.ClientConnInterface) FeedServiceClient {
return &feedServiceClient{cc}
}
func (c *feedServiceClient) GetFeed(ctx context.Context, in *GetFeedRequest, opts ...grpc.CallOption) (*resources.Feed, error) {
out := new(resources.Feed)
err := c.cc.Invoke(ctx, "/google.ads.googleads.v1.services.FeedService/GetFeed", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *feedServiceClient) MutateFeeds(ctx context.Context, in *MutateFeedsRequest, opts ...grpc.CallOption) (*MutateFeedsResponse, error) {
out := new(MutateFeedsResponse)
err := c.cc.Invoke(ctx, "/google.ads.googleads.v1.services.FeedService/MutateFeeds", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// FeedServiceServer is the server API for FeedService service.
type FeedServiceServer interface {
// Returns the requested feed in full detail.
GetFeed(context.Context, *GetFeedRequest) (*resources.Feed, error)
// Creates, updates, or removes feeds. Operation statuses are
// returned.
MutateFeeds(context.Context, *MutateFeedsRequest) (*MutateFeedsResponse, error)
}
// UnimplementedFeedServiceServer can be embedded to have forward compatible implementations.
type UnimplementedFeedServiceServer struct {
}
func (*UnimplementedFeedServiceServer) GetFeed(ctx context.Context, req *GetFeedRequest) (*resources.Feed, error) {
return nil, status1.Errorf(codes.Unimplemented, "method GetFeed not implemented")
}
func (*UnimplementedFeedServiceServer) MutateFeeds(ctx context.Context, req *MutateFeedsRequest) (*MutateFeedsResponse, error) {
return nil, status1.Errorf(codes.Unimplemented, "method MutateFeeds not implemented")
}
func RegisterFeedServiceServer(s *grpc.Server, srv FeedServiceServer) {
s.RegisterService(&_FeedService_serviceDesc, srv)
}
func _FeedService_GetFeed_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFeedRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FeedServiceServer).GetFeed(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.ads.googleads.v1.services.FeedService/GetFeed",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FeedServiceServer).GetFeed(ctx, req.(*GetFeedRequest))
}
return interceptor(ctx, in, info, handler)
}
func _FeedService_MutateFeeds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(MutateFeedsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FeedServiceServer).MutateFeeds(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.ads.googleads.v1.services.FeedService/MutateFeeds",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FeedServiceServer).MutateFeeds(ctx, req.(*MutateFeedsRequest))
}
return interceptor(ctx, in, info, handler)
}
var _FeedService_serviceDesc = grpc.ServiceDesc{
ServiceName: "google.ads.googleads.v1.services.FeedService",
HandlerType: (*FeedServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "GetFeed",
Handler: _FeedService_GetFeed_Handler,
},
{
MethodName: "MutateFeeds",
Handler: _FeedService_MutateFeeds_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "google/ads/googleads/v1/services/feed_service.proto",
}