Merge pull request #18 from blide/master

Add Customer.PhotoURL
This commit is contained in:
Alex Lushpai 2018-09-07 12:16:17 +03:00 committed by GitHub
commit 10a7a0451b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -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"`
}

View File

@ -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"`
}