mirror of
https://github.com/retailcrm/api-client-go.git
synced 2024-11-21 20:36:03 +03:00
update types with new fields
This commit is contained in:
parent
a51bab6df4
commit
107a4d150b
72
types.go
72
types.go
@ -245,15 +245,25 @@ type Phone struct {
|
|||||||
|
|
||||||
// CustomerHistoryRecord type.
|
// CustomerHistoryRecord type.
|
||||||
type CustomerHistoryRecord struct {
|
type CustomerHistoryRecord struct {
|
||||||
ID int `json:"id,omitempty"`
|
ID int `json:"id,omitempty"`
|
||||||
CreatedAt string `json:"createdAt,omitempty"`
|
CreatedAt string `json:"createdAt,omitempty"`
|
||||||
Created bool `json:"created,omitempty"`
|
Created bool `json:"created,omitempty"`
|
||||||
Deleted bool `json:"deleted,omitempty"`
|
Deleted bool `json:"deleted,omitempty"`
|
||||||
Source string `json:"source,omitempty"`
|
Source string `json:"source,omitempty"`
|
||||||
Field string `json:"field,omitempty"`
|
Field string `json:"field,omitempty"`
|
||||||
User *User `json:"user,omitempty"`
|
OldValue interface{} `json:"oldValue,omitempty"`
|
||||||
APIKey *APIKey `json:"apiKey,omitempty"`
|
NewValue interface{} `json:"newValue,omitempty"`
|
||||||
Customer *Customer `json:"customer,omitempty"`
|
User *User `json:"user,omitempty"`
|
||||||
|
APIKey *APIKey `json:"apiKey,omitempty"`
|
||||||
|
Customer *Customer `json:"customer,omitempty"`
|
||||||
|
Address *CustomerAddressWithIsMain `json:"address,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CustomerAddressWithIsMain struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
ExternalID string `json:"externalId,omitempty"`
|
||||||
|
Name string `json:"name,omitempty"`
|
||||||
|
IsMain bool `json:"isMain"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CorporateCustomerHistoryRecord type.
|
// CorporateCustomerHistoryRecord type.
|
||||||
@ -264,6 +274,8 @@ type CorporateCustomerHistoryRecord struct {
|
|||||||
Deleted bool `json:"deleted,omitempty"`
|
Deleted bool `json:"deleted,omitempty"`
|
||||||
Source string `json:"source,omitempty"`
|
Source string `json:"source,omitempty"`
|
||||||
Field string `json:"field,omitempty"`
|
Field string `json:"field,omitempty"`
|
||||||
|
OldValue interface{} `json:"oldValue,omitempty"`
|
||||||
|
NewValue interface{} `json:"newValue,omitempty"`
|
||||||
User *User `json:"user,omitempty"`
|
User *User `json:"user,omitempty"`
|
||||||
APIKey *APIKey `json:"apiKey,omitempty"`
|
APIKey *APIKey `json:"apiKey,omitempty"`
|
||||||
CorporateCustomer *CorporateCustomer `json:"corporateCustomer,omitempty"`
|
CorporateCustomer *CorporateCustomer `json:"corporateCustomer,omitempty"`
|
||||||
@ -465,15 +477,21 @@ type OrderItem struct {
|
|||||||
|
|
||||||
// OrdersHistoryRecord type.
|
// OrdersHistoryRecord type.
|
||||||
type OrdersHistoryRecord struct {
|
type OrdersHistoryRecord struct {
|
||||||
ID int `json:"id,omitempty"`
|
ID int `json:"id,omitempty"`
|
||||||
CreatedAt string `json:"createdAt,omitempty"`
|
CreatedAt string `json:"createdAt,omitempty"`
|
||||||
Created bool `json:"created,omitempty"`
|
Created bool `json:"created,omitempty"`
|
||||||
Deleted bool `json:"deleted,omitempty"`
|
Deleted bool `json:"deleted,omitempty"`
|
||||||
Source string `json:"source,omitempty"`
|
Source string `json:"source,omitempty"`
|
||||||
Field string `json:"field,omitempty"`
|
Field string `json:"field,omitempty"`
|
||||||
User *User `json:"user,omitempty"`
|
OldValue interface{} `json:"oldValue,omitempty"`
|
||||||
APIKey *APIKey `json:"apiKey,omitempty"`
|
NewValue interface{} `json:"newValue,omitempty"`
|
||||||
Order *Order `json:"order,omitempty"`
|
User *User `json:"user,omitempty"`
|
||||||
|
APIKey *APIKey `json:"apiKey,omitempty"`
|
||||||
|
Order *Order `json:"order,omitempty"`
|
||||||
|
Ancestor *Order `json:"ancestor,omitempty"`
|
||||||
|
Item *OrderItem `json:"item,omitempty"`
|
||||||
|
Payment *Payment `json:"payment"`
|
||||||
|
CombinedTo *Order `json:"combinedTo,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pack type.
|
// Pack type.
|
||||||
@ -499,14 +517,16 @@ type PackItem struct {
|
|||||||
|
|
||||||
// PacksHistoryRecord type.
|
// PacksHistoryRecord type.
|
||||||
type PacksHistoryRecord struct {
|
type PacksHistoryRecord struct {
|
||||||
ID int `json:"id,omitempty"`
|
ID int `json:"id,omitempty"`
|
||||||
CreatedAt string `json:"createdAt,omitempty"`
|
CreatedAt string `json:"createdAt,omitempty"`
|
||||||
Created bool `json:"created,omitempty"`
|
Created bool `json:"created,omitempty"`
|
||||||
Deleted bool `json:"deleted,omitempty"`
|
Deleted bool `json:"deleted,omitempty"`
|
||||||
Source string `json:"source,omitempty"`
|
Source string `json:"source,omitempty"`
|
||||||
Field string `json:"field,omitempty"`
|
Field string `json:"field,omitempty"`
|
||||||
User *User `json:"user,omitempty"`
|
OldValue interface{} `json:"oldValue,omitempty"`
|
||||||
Pack *Pack `json:"pack,omitempty"`
|
NewValue interface{} `json:"newValue,omitempty"`
|
||||||
|
User *User `json:"user,omitempty"`
|
||||||
|
Pack *Pack `json:"pack,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Offer type.
|
// Offer type.
|
||||||
|
Loading…
Reference in New Issue
Block a user