-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathad_group_feed.go
50 lines (42 loc) · 1.19 KB
/
ad_group_feed.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package gads
import (
// "encoding/xml"
// "fmt"
)
type AdGroupFeedService struct {
Auth
}
func NewAdGroupFeedService(auth *Auth) *AdGroupFeedService {
return &AdGroupFeedService{Auth: *auth}
}
type AdGroupFeedOperations struct {
}
type AdGroupFeed struct {
}
// Get is not yet implemented
//
// Relevant documentation
//
// https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupFeedService#get
//
func (s AdGroupFeedService) Get(selector Selector) (adGroupFeeds []AdGroupFeed, err error) {
return adGroupFeeds, ERROR_NOT_YET_IMPLEMENTED
}
// Mutate is not yet implemented
//
// Relevant documentation
//
// https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupFeedService#mutate
//
func (s *AdGroupFeedService) Mutate(adGroupFeedOperations AdGroupFeedOperations) (adGroupFeeds []AdGroupFeed, err error) {
return adGroupFeeds, ERROR_NOT_YET_IMPLEMENTED
}
// Query is not yet implemented
//
// Relevant documentation
//
// https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupFeedService#query
//
func (s *AdGroupFeedService) Query(query string) (adGroupFeeds []AdGroupFeed, err error) {
return adGroupFeeds, ERROR_NOT_YET_IMPLEMENTED
}