From 3bf278118f1f2c817ed828bd98c8b18ea8165924 Mon Sep 17 00:00:00 2001 From: blide Date: Fri, 7 Sep 2018 12:14:36 +0300 Subject: [PATCH] Add Customer.PhotoURL --- v5/filters.go | 1 + v5/types.go | 1 + 2 files changed, 2 insertions(+) diff --git a/v5/filters.go b/v5/filters.go index deedf0a..c4e4584 100644 --- a/v5/filters.go +++ b/v5/filters.go @@ -54,6 +54,7 @@ type CustomersFilter struct { KeywordName string `url:"keywordName,omitempty"` AdContentName string `url:"adContentName,omitempty"` MgCustomerID string `url:"mgCustomerId,omitempty"` + PhotoURL string `url:"photoUrl,omitempty"` CustomFields map[string]string `url:"customFields,omitempty,brackets"` } diff --git a/v5/types.go b/v5/types.go index 81f28f0..e42ef11 100644 --- a/v5/types.go +++ b/v5/types.go @@ -141,6 +141,7 @@ type Customer struct { LastClientID string `json:"lastClientId,omitempty"` BrowserID string `json:"browserId,omitempty"` MgCustomerID string `json:"mgCustomerId,omitempty"` + PhotoURL string `json:"photoUrl,omitempty"` CustomFields []map[string]string `json:"customFields,omitempty,brackets"` }