mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
edit tests
This commit is contained in:
parent
65dcf5ab13
commit
5baed41c20
8 changed files with 1160 additions and 1283 deletions
640
v5/client.go
640
v5/client.go
File diff suppressed because it is too large
Load diff
1332
v5/client_test.go
1332
v5/client_test.go
File diff suppressed because it is too large
Load diff
19
v5/error.go
19
v5/error.go
|
@ -5,14 +5,14 @@ import (
|
|||
"strconv"
|
||||
)
|
||||
|
||||
// ApiErrorsList struct
|
||||
// ApiErrorsList struct.
|
||||
type ApiErrorsList map[string]string
|
||||
|
||||
// ApiError struct
|
||||
// ApiError struct.
|
||||
type ApiError struct {
|
||||
SuccessfulResponse
|
||||
ErrorMsg string `json:"errorMsg,omitempty"`
|
||||
Errors ApiErrorsList `json:"errors,omitempty"`
|
||||
ErrorMsg string `json:"errorMsg,omitempty"`
|
||||
Errors ApiErrorsList `json:"errors,omitempty"`
|
||||
}
|
||||
|
||||
func (e *ApiError) Error() string {
|
||||
|
@ -23,9 +23,14 @@ func (e *ApiError) GetApiErrors() map[string]string {
|
|||
return e.Errors
|
||||
}
|
||||
|
||||
func NewApiError (dataResponse []byte) error {
|
||||
func NewApiError(dataResponse []byte) error {
|
||||
a := &ApiError{}
|
||||
|
||||
if dataResponse[0] == 60 {
|
||||
a.ErrorMsg = "405 Not Allowed"
|
||||
return a
|
||||
}
|
||||
|
||||
if err := json.Unmarshal(dataResponse, a); err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -33,7 +38,7 @@ func NewApiError (dataResponse []byte) error {
|
|||
return a
|
||||
}
|
||||
|
||||
// ErrorsHandler returns map
|
||||
// ErrorsHandler returns map.
|
||||
func ErrorsHandler(errs interface{}) map[string]string {
|
||||
m := make(map[string]string)
|
||||
|
||||
|
@ -49,4 +54,4 @@ func ErrorsHandler(errs interface{}) map[string]string {
|
|||
}
|
||||
|
||||
return m
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package v5
|
||||
|
||||
// CustomersFilter type
|
||||
// CustomersFilter type.
|
||||
type CustomersFilter struct {
|
||||
Ids []string `url:"ids,omitempty,brackets"`
|
||||
ExternalIds []string `url:"externalIds,omitempty,brackets"`
|
||||
|
@ -57,7 +57,7 @@ type CustomersFilter struct {
|
|||
CustomFields map[string]string `url:"customFields,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomersFilter type
|
||||
// CorporateCustomersFilter type.
|
||||
type CorporateCustomersFilter struct {
|
||||
ContragentName string `url:"contragentName,omitempty"`
|
||||
ContragentInn string `url:"contragentInn,omitempty"`
|
||||
|
@ -99,7 +99,7 @@ type CorporateCustomersFilter struct {
|
|||
CustomFields map[string]string `url:"customFields,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomersNotesFilter type
|
||||
// CorporateCustomersNotesFilter type.
|
||||
type CorporateCustomersNotesFilter struct {
|
||||
Ids []string `url:"ids,omitempty,brackets"`
|
||||
CustomerIds []string `url:"ids,omitempty,brackets"`
|
||||
|
@ -110,7 +110,7 @@ type CorporateCustomersNotesFilter struct {
|
|||
CreatedAtTo string `url:"createdAtTo,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomerAddressesFilter type
|
||||
// CorporateCustomerAddressesFilter type.
|
||||
type CorporateCustomerAddressesFilter struct {
|
||||
Ids []string `url:"ids,omitempty,brackets"`
|
||||
Name string `url:"name,omitempty"`
|
||||
|
@ -118,13 +118,13 @@ type CorporateCustomerAddressesFilter struct {
|
|||
Region string `url:"region,omitempty"`
|
||||
}
|
||||
|
||||
// IdentifiersPairFilter type
|
||||
// IdentifiersPairFilter type.
|
||||
type IdentifiersPairFilter struct {
|
||||
Ids []string `url:"ids,omitempty,brackets"`
|
||||
ExternalIds []string `url:"externalIds,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CustomersHistoryFilter type
|
||||
// CustomersHistoryFilter type.
|
||||
type CustomersHistoryFilter struct {
|
||||
CustomerID int `url:"customerId,omitempty"`
|
||||
SinceID int `url:"sinceId,omitempty"`
|
||||
|
@ -133,7 +133,7 @@ type CustomersHistoryFilter struct {
|
|||
EndDate string `url:"endDate,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomersHistoryFilter type
|
||||
// CorporateCustomersHistoryFilter type.
|
||||
type CorporateCustomersHistoryFilter struct {
|
||||
CustomerID int `url:"customerId,omitempty"`
|
||||
SinceID int `url:"sinceId,omitempty"`
|
||||
|
@ -143,7 +143,7 @@ type CorporateCustomersHistoryFilter struct {
|
|||
EndDate string `url:"endDate,omitempty"`
|
||||
}
|
||||
|
||||
// OrdersFilter type
|
||||
// OrdersFilter type.
|
||||
type OrdersFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
ExternalIds []string `url:"externalIds,omitempty,brackets"`
|
||||
|
@ -234,7 +234,7 @@ type OrdersFilter struct {
|
|||
CustomFields map[string]string `url:"customFields,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrdersHistoryFilter type
|
||||
// OrdersHistoryFilter type.
|
||||
type OrdersHistoryFilter struct {
|
||||
OrderID int `url:"orderId,omitempty"`
|
||||
SinceID int `url:"sinceId,omitempty"`
|
||||
|
@ -243,7 +243,7 @@ type OrdersHistoryFilter struct {
|
|||
EndDate string `url:"endDate,omitempty"`
|
||||
}
|
||||
|
||||
// UsersFilter type
|
||||
// UsersFilter type.
|
||||
type UsersFilter struct {
|
||||
Email string `url:"email,omitempty"`
|
||||
Status string `url:"status,omitempty"`
|
||||
|
@ -256,7 +256,7 @@ type UsersFilter struct {
|
|||
Groups []string `url:"groups,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// TasksFilter type
|
||||
// TasksFilter type.
|
||||
type TasksFilter struct {
|
||||
OrderNumber string `url:"orderNumber,omitempty"`
|
||||
Status string `url:"status,omitempty"`
|
||||
|
@ -268,7 +268,7 @@ type TasksFilter struct {
|
|||
Performers []int `url:"performers,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// NotesFilter type
|
||||
// NotesFilter type.
|
||||
type NotesFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
CustomerIds []int `url:"customerIds,omitempty,brackets"`
|
||||
|
@ -279,7 +279,7 @@ type NotesFilter struct {
|
|||
CreatedAtTo string `url:"createdAtTo,omitempty"`
|
||||
}
|
||||
|
||||
// SegmentsFilter type
|
||||
// SegmentsFilter type.
|
||||
type SegmentsFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
Active int `url:"active,omitempty"`
|
||||
|
@ -291,7 +291,7 @@ type SegmentsFilter struct {
|
|||
DateTo string `url:"dateTo,omitempty"`
|
||||
}
|
||||
|
||||
// PacksFilter type
|
||||
// PacksFilter type.
|
||||
type PacksFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
Stores []string `url:"stores,omitempty"`
|
||||
|
@ -306,7 +306,7 @@ type PacksFilter struct {
|
|||
DeliveryNoteNumber string `url:"deliveryNoteNumber,omitempty"`
|
||||
}
|
||||
|
||||
// InventoriesFilter type
|
||||
// InventoriesFilter type.
|
||||
type InventoriesFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
ProductExternalID string `url:"productExternalId,omitempty"`
|
||||
|
@ -319,7 +319,7 @@ type InventoriesFilter struct {
|
|||
Sites []string `url:"sites,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ProductsGroupsFilter type
|
||||
// ProductsGroupsFilter type.
|
||||
type ProductsGroupsFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
Sites []string `url:"sites,omitempty,brackets"`
|
||||
|
@ -327,7 +327,7 @@ type ProductsGroupsFilter struct {
|
|||
ParentGroupID string `url:"parentGroupId,omitempty"`
|
||||
}
|
||||
|
||||
// ProductsFilter type
|
||||
// ProductsFilter type.
|
||||
type ProductsFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
OfferIds []int `url:"offerIds,omitempty,brackets"`
|
||||
|
@ -355,14 +355,14 @@ type ProductsFilter struct {
|
|||
Properties map[string]string `url:"properties,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ProductsPropertiesFilter type
|
||||
// ProductsPropertiesFilter type.
|
||||
type ProductsPropertiesFilter struct {
|
||||
Code string `url:"code,omitempty"`
|
||||
Name string `url:"name,omitempty"`
|
||||
Sites []string `url:"sites,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ShipmentFilter type
|
||||
// ShipmentFilter type.
|
||||
type ShipmentFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
ExternalID string `url:"externalId,omitempty"`
|
||||
|
@ -375,7 +375,7 @@ type ShipmentFilter struct {
|
|||
Statuses []string `url:"statuses,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CostsFilter type
|
||||
// CostsFilter type.
|
||||
type CostsFilter struct {
|
||||
MinSumm string `url:"minSumm,omitempty"`
|
||||
MaxSumm string `url:"maxSumm,omitempty"`
|
||||
|
@ -395,7 +395,7 @@ type CostsFilter struct {
|
|||
OrderExternalIds []string `url:"orderIds,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// FilesFilter type
|
||||
// FilesFilter type.
|
||||
type FilesFilter struct {
|
||||
Ids []int `url:"ids,omitempty,brackets"`
|
||||
OrderIds []int `url:"orderIds,omitempty,brackets"`
|
||||
|
@ -412,7 +412,7 @@ type FilesFilter struct {
|
|||
Sites []string `url:"sites,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CustomFieldsFilter type
|
||||
// CustomFieldsFilter type.
|
||||
type CustomFieldsFilter struct {
|
||||
Name string `url:"name,omitempty"`
|
||||
Code string `url:"code,omitempty"`
|
||||
|
@ -422,7 +422,7 @@ type CustomFieldsFilter struct {
|
|||
DisplayArea string `url:"displayArea,omitempty"`
|
||||
}
|
||||
|
||||
// CustomDictionariesFilter type
|
||||
// CustomDictionariesFilter type.
|
||||
type CustomDictionariesFilter struct {
|
||||
Name string `url:"name,omitempty"`
|
||||
Code string `url:"code,omitempty"`
|
||||
|
|
|
@ -8,8 +8,8 @@ func (t Tag) MarshalJSON() ([]byte, error) {
|
|||
return json.Marshal(t.Name)
|
||||
}
|
||||
|
||||
func (a *ApiErrorsList) UnmarshalJSON (data []byte) error {
|
||||
var i interface {}
|
||||
func (a *ApiErrorsList) UnmarshalJSON(data []byte) error {
|
||||
var i interface{}
|
||||
if err := json.Unmarshal(data, &i); err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -1,33 +1,33 @@
|
|||
package v5
|
||||
|
||||
// CustomerRequest type
|
||||
// CustomerRequest type.
|
||||
type CustomerRequest struct {
|
||||
By string `url:"by,omitempty"`
|
||||
Site string `url:"site,omitempty"`
|
||||
}
|
||||
|
||||
// CustomersRequest type
|
||||
// CustomersRequest type.
|
||||
type CustomersRequest struct {
|
||||
Filter CustomersFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomersRequest type
|
||||
// CorporateCustomersRequest type.
|
||||
type CorporateCustomersRequest struct {
|
||||
Filter CorporateCustomersFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomersNotesRequest type
|
||||
// CorporateCustomersNotesRequest type.
|
||||
type CorporateCustomersNotesRequest struct {
|
||||
Filter CorporateCustomersNotesFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomerAddressesRequest type
|
||||
// CorporateCustomerAddressesRequest type.
|
||||
type CorporateCustomerAddressesRequest struct {
|
||||
Filter CorporateCustomerAddressesFilter `url:"filter,omitempty"`
|
||||
By string `url:"by,omitempty"`
|
||||
|
@ -36,7 +36,7 @@ type CorporateCustomerAddressesRequest struct {
|
|||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// IdentifiersPairRequest type
|
||||
// IdentifiersPairRequest type.
|
||||
type IdentifiersPairRequest struct {
|
||||
Filter IdentifiersPairFilter `url:"filter,omitempty"`
|
||||
By string `url:"by,omitempty"`
|
||||
|
@ -45,135 +45,135 @@ type IdentifiersPairRequest struct {
|
|||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CustomersUploadRequest type
|
||||
// CustomersUploadRequest type.
|
||||
type CustomersUploadRequest struct {
|
||||
Customers []Customer `url:"customers,omitempty,brackets"`
|
||||
Site string `url:"site,omitempty"`
|
||||
}
|
||||
|
||||
// CustomersHistoryRequest type
|
||||
// CustomersHistoryRequest type.
|
||||
type CustomersHistoryRequest struct {
|
||||
Filter CustomersHistoryFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomersHistoryRequest type
|
||||
// CorporateCustomersHistoryRequest type.
|
||||
type CorporateCustomersHistoryRequest struct {
|
||||
Filter CorporateCustomersHistoryFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// OrderRequest type
|
||||
// OrderRequest type.
|
||||
type OrderRequest struct {
|
||||
By string `url:"by,omitempty"`
|
||||
Site string `url:"site,omitempty"`
|
||||
}
|
||||
|
||||
// OrdersRequest type
|
||||
// OrdersRequest type.
|
||||
type OrdersRequest struct {
|
||||
Filter OrdersFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// OrdersStatusesRequest type
|
||||
// OrdersStatusesRequest type.
|
||||
type OrdersStatusesRequest struct {
|
||||
IDs []int `url:"ids,omitempty,brackets"`
|
||||
ExternalIDs []string `url:"externalIds,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrdersUploadRequest type
|
||||
// OrdersUploadRequest type.
|
||||
type OrdersUploadRequest struct {
|
||||
Orders []Order `url:"orders,omitempty,brackets"`
|
||||
Site string `url:"site,omitempty"`
|
||||
}
|
||||
|
||||
// OrdersHistoryRequest type
|
||||
// OrdersHistoryRequest type.
|
||||
type OrdersHistoryRequest struct {
|
||||
Filter OrdersHistoryFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// PacksRequest type
|
||||
// PacksRequest type.
|
||||
type PacksRequest struct {
|
||||
Filter PacksFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// PacksHistoryRequest type
|
||||
// PacksHistoryRequest type.
|
||||
type PacksHistoryRequest struct {
|
||||
Filter OrdersHistoryFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// UsersRequest type
|
||||
// UsersRequest type.
|
||||
type UsersRequest struct {
|
||||
Filter UsersFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// UserGroupsRequest type
|
||||
// UserGroupsRequest type.
|
||||
type UserGroupsRequest struct {
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// TasksRequest type
|
||||
// TasksRequest type.
|
||||
type TasksRequest struct {
|
||||
Filter TasksFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// NotesRequest type
|
||||
// NotesRequest type.
|
||||
type NotesRequest struct {
|
||||
Filter NotesFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// SegmentsRequest type
|
||||
// SegmentsRequest type.
|
||||
type SegmentsRequest struct {
|
||||
Filter SegmentsFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// InventoriesRequest type
|
||||
// InventoriesRequest type.
|
||||
type InventoriesRequest struct {
|
||||
Filter InventoriesFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// ProductsGroupsRequest type
|
||||
// ProductsGroupsRequest type.
|
||||
type ProductsGroupsRequest struct {
|
||||
Filter ProductsGroupsFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// ProductsRequest type
|
||||
// ProductsRequest type.
|
||||
type ProductsRequest struct {
|
||||
Filter ProductsFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// ProductsPropertiesRequest type
|
||||
// ProductsPropertiesRequest type.
|
||||
type ProductsPropertiesRequest struct {
|
||||
Filter ProductsPropertiesFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// DeliveryTrackingRequest type
|
||||
// DeliveryTrackingRequest type.
|
||||
type DeliveryTrackingRequest struct {
|
||||
DeliveryID string `json:"deliveryId,omitempty"`
|
||||
TrackNumber string `json:"trackNumber,omitempty"`
|
||||
|
@ -181,35 +181,35 @@ type DeliveryTrackingRequest struct {
|
|||
ExtraData map[string]string `json:"extraData,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// DeliveryShipmentsRequest type
|
||||
// DeliveryShipmentsRequest type.
|
||||
type DeliveryShipmentsRequest struct {
|
||||
Filter ShipmentFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CostsRequest type
|
||||
// CostsRequest type.
|
||||
type CostsRequest struct {
|
||||
Filter CostsFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// FilesRequest type
|
||||
// FilesRequest type.
|
||||
type FilesRequest struct {
|
||||
Filter FilesFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CustomFieldsRequest type
|
||||
// CustomFieldsRequest type.
|
||||
type CustomFieldsRequest struct {
|
||||
Filter CustomFieldsFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
Page int `url:"page,omitempty"`
|
||||
}
|
||||
|
||||
// CustomDictionariesRequest type
|
||||
// CustomDictionariesRequest type.
|
||||
type CustomDictionariesRequest struct {
|
||||
Filter CustomDictionariesFilter `url:"filter,omitempty"`
|
||||
Limit int `url:"limit,omitempty"`
|
||||
|
|
160
v5/response.go
160
v5/response.go
|
@ -1,35 +1,35 @@
|
|||
package v5
|
||||
|
||||
// SuccessfulResponse type
|
||||
// SuccessfulResponse type.
|
||||
type SuccessfulResponse struct {
|
||||
Success bool `json:"success,omitempty"`
|
||||
}
|
||||
|
||||
// CreateResponse type
|
||||
// CreateResponse type.
|
||||
type CreateResponse struct {
|
||||
Success bool `json:"success"`
|
||||
ID int `json:"id,omitempty"`
|
||||
}
|
||||
|
||||
// OrderCreateResponse type
|
||||
// OrderCreateResponse type.
|
||||
type OrderCreateResponse struct {
|
||||
CreateResponse
|
||||
Order Order `json:"order,omitempty"`
|
||||
}
|
||||
|
||||
// OperationResponse type
|
||||
// OperationResponse type.
|
||||
type OperationResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Errors map[string]string `json:"errors,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// VersionResponse return available API versions
|
||||
// VersionResponse return available API versions.
|
||||
type VersionResponse struct {
|
||||
Success bool `json:"success,omitempty"`
|
||||
Versions []string `json:"versions,brackets,omitempty"`
|
||||
}
|
||||
|
||||
// CredentialResponse return available API methods
|
||||
// CredentialResponse return available API methods.
|
||||
type CredentialResponse struct {
|
||||
Success bool `json:"success,omitempty"`
|
||||
Credentials []string `json:"credentials,brackets,omitempty"`
|
||||
|
@ -37,77 +37,77 @@ type CredentialResponse struct {
|
|||
SitesAvailable []string `json:"sitesAvailable,brackets,omitempty"`
|
||||
}
|
||||
|
||||
// CustomerResponse type
|
||||
// CustomerResponse type.
|
||||
type CustomerResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Customer *Customer `json:"customer,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomerResponse type
|
||||
// CorporateCustomerResponse type.
|
||||
type CorporateCustomerResponse struct {
|
||||
Success bool `json:"success"`
|
||||
CorporateCustomer *CorporateCustomer `json:"customerCorporate,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CustomersResponse type
|
||||
// CustomersResponse type.
|
||||
type CustomersResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Customers []Customer `json:"customers,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomersResponse type
|
||||
// CorporateCustomersResponse type.
|
||||
type CorporateCustomersResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
CustomersCorporate []CorporateCustomer `json:"customersCorporate,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomersNotesResponse type
|
||||
// CorporateCustomersNotesResponse type.
|
||||
type CorporateCustomersNotesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Notes []Note `json:"notes,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomersAddressesResponse type
|
||||
// CorporateCustomersAddressesResponse type.
|
||||
type CorporateCustomersAddressesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Addresses []CorporateCustomerAddress `json:"addresses"`
|
||||
}
|
||||
|
||||
// CorporateCustomerCompaniesResponse type
|
||||
// CorporateCustomerCompaniesResponse type.
|
||||
type CorporateCustomerCompaniesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Companies []Company `json:"companies"`
|
||||
}
|
||||
|
||||
// CorporateCustomerContactsResponse type
|
||||
// CorporateCustomerContactsResponse type.
|
||||
type CorporateCustomerContactsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Contacts []CorporateCustomerContact `json:"contacts"`
|
||||
}
|
||||
|
||||
// CustomerChangeResponse type
|
||||
// CustomerChangeResponse type.
|
||||
type CustomerChangeResponse struct {
|
||||
Success bool `json:"success"`
|
||||
ID int `json:"id,omitempty"`
|
||||
State string `json:"state,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomerChangeResponse type
|
||||
// CorporateCustomerChangeResponse type.
|
||||
type CorporateCustomerChangeResponse CustomerChangeResponse
|
||||
|
||||
// CustomersUploadResponse type
|
||||
// CustomersUploadResponse type.
|
||||
type CustomersUploadResponse struct {
|
||||
Success bool `json:"success"`
|
||||
UploadedCustomers []IdentifiersPair `json:"uploadedCustomers,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomersUploadResponse type
|
||||
// CorporateCustomersUploadResponse type.
|
||||
type CorporateCustomersUploadResponse CustomersUploadResponse
|
||||
|
||||
// CustomersHistoryResponse type
|
||||
// CustomersHistoryResponse type.
|
||||
type CustomersHistoryResponse struct {
|
||||
Success bool `json:"success,omitempty"`
|
||||
GeneratedAt string `json:"generatedAt,omitempty"`
|
||||
|
@ -115,7 +115,7 @@ type CustomersHistoryResponse struct {
|
|||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomersHistoryResponse type
|
||||
// CorporateCustomersHistoryResponse type.
|
||||
type CorporateCustomersHistoryResponse struct {
|
||||
Success bool `json:"success,omitempty"`
|
||||
GeneratedAt string `json:"generatedAt,omitempty"`
|
||||
|
@ -123,32 +123,32 @@ type CorporateCustomersHistoryResponse struct {
|
|||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
}
|
||||
|
||||
// OrderResponse type
|
||||
// OrderResponse type.
|
||||
type OrderResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Order *Order `json:"order,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrdersResponse type
|
||||
// OrdersResponse type.
|
||||
type OrdersResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Orders []Order `json:"orders,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrdersStatusesResponse type
|
||||
// OrdersStatusesResponse type.
|
||||
type OrdersStatusesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Orders []OrdersStatus `json:"orders"`
|
||||
}
|
||||
|
||||
// OrdersUploadResponse type
|
||||
// OrdersUploadResponse type.
|
||||
type OrdersUploadResponse struct {
|
||||
Success bool `json:"success"`
|
||||
UploadedOrders []IdentifiersPair `json:"uploadedOrders,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrdersHistoryResponse type
|
||||
// OrdersHistoryResponse type.
|
||||
type OrdersHistoryResponse struct {
|
||||
Success bool `json:"success,omitempty"`
|
||||
GeneratedAt string `json:"generatedAt,omitempty"`
|
||||
|
@ -156,20 +156,20 @@ type OrdersHistoryResponse struct {
|
|||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
}
|
||||
|
||||
// PackResponse type
|
||||
// PackResponse type.
|
||||
type PackResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pack *Pack `json:"pack,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// PacksResponse type
|
||||
// PacksResponse type.
|
||||
type PacksResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Packs []Pack `json:"packs,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// PacksHistoryResponse type
|
||||
// PacksHistoryResponse type.
|
||||
type PacksHistoryResponse struct {
|
||||
Success bool `json:"success,omitempty"`
|
||||
GeneratedAt string `json:"generatedAt,omitempty"`
|
||||
|
@ -177,318 +177,318 @@ type PacksHistoryResponse struct {
|
|||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
}
|
||||
|
||||
// UserResponse type
|
||||
// UserResponse type.
|
||||
type UserResponse struct {
|
||||
Success bool `json:"success"`
|
||||
User *User `json:"user,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// UsersResponse type
|
||||
// UsersResponse type.
|
||||
type UsersResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Users []User `json:"users,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// UserGroupsResponse type
|
||||
// UserGroupsResponse type.
|
||||
type UserGroupsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Groups []UserGroup `json:"groups,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// TaskResponse type
|
||||
// TaskResponse type.
|
||||
type TaskResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Task *Task `json:"task,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// TasksResponse type
|
||||
// TasksResponse type.
|
||||
type TasksResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Tasks []Task `json:"tasks,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// NotesResponse type
|
||||
// NotesResponse type.
|
||||
type NotesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Notes []Note `json:"notes,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// SegmentsResponse type
|
||||
// SegmentsResponse type.
|
||||
type SegmentsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Segments []Segment `json:"segments,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// SettingsResponse type
|
||||
// SettingsResponse type.
|
||||
type SettingsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Settings Settings `json:"settings,omitempty,brackets"`
|
||||
Success bool `json:"success"`
|
||||
Settings Settings `json:"settings,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CountriesResponse type
|
||||
// CountriesResponse type.
|
||||
type CountriesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
CountriesIso []string `json:"countriesIso,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CostGroupsResponse type
|
||||
// CostGroupsResponse type.
|
||||
type CostGroupsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
CostGroups []CostGroup `json:"costGroups,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CostItemsResponse type
|
||||
// CostItemsResponse type.
|
||||
type CostItemsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
CostItems []CostItem `json:"costItems,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CouriersResponse type
|
||||
// CouriersResponse type.
|
||||
type CouriersResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Couriers []Courier `json:"couriers,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// DeliveryServiceResponse type
|
||||
// DeliveryServiceResponse type.
|
||||
type DeliveryServiceResponse struct {
|
||||
Success bool `json:"success"`
|
||||
DeliveryServices map[string]DeliveryService `json:"deliveryServices,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// DeliveryTypesResponse type
|
||||
// DeliveryTypesResponse type.
|
||||
type DeliveryTypesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
DeliveryTypes map[string]DeliveryType `json:"deliveryTypes,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// LegalEntitiesResponse type
|
||||
// LegalEntitiesResponse type.
|
||||
type LegalEntitiesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
LegalEntities []LegalEntity `json:"legalEntities,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrderMethodsResponse type
|
||||
// OrderMethodsResponse type.
|
||||
type OrderMethodsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
OrderMethods map[string]OrderMethod `json:"orderMethods,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrderTypesResponse type
|
||||
// OrderTypesResponse type.
|
||||
type OrderTypesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
OrderTypes map[string]OrderType `json:"orderTypes,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// PaymentStatusesResponse type
|
||||
// PaymentStatusesResponse type.
|
||||
type PaymentStatusesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
PaymentStatuses map[string]PaymentStatus `json:"paymentStatuses,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// PaymentTypesResponse type
|
||||
// PaymentTypesResponse type.
|
||||
type PaymentTypesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
PaymentTypes map[string]PaymentType `json:"paymentTypes,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// PriceTypesResponse type
|
||||
// PriceTypesResponse type.
|
||||
type PriceTypesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
PriceTypes []PriceType `json:"priceTypes,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ProductStatusesResponse type
|
||||
// ProductStatusesResponse type.
|
||||
type ProductStatusesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
ProductStatuses map[string]ProductStatus `json:"productStatuses,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// StatusesResponse type
|
||||
// StatusesResponse type.
|
||||
type StatusesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Statuses map[string]Status `json:"statuses,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// StatusGroupsResponse type
|
||||
// StatusGroupsResponse type.
|
||||
type StatusGroupsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
StatusGroups map[string]StatusGroup `json:"statusGroups,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// SitesResponse type
|
||||
// SitesResponse type.
|
||||
type SitesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Sites map[string]Site `json:"sites,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// StoresResponse type
|
||||
// StoresResponse type.
|
||||
type StoresResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Stores []Store `json:"stores,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// InventoriesResponse type
|
||||
// InventoriesResponse type.
|
||||
type InventoriesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Offers []Offer `json:"offers,omitempty"`
|
||||
}
|
||||
|
||||
// StoreUploadResponse type
|
||||
// StoreUploadResponse type.
|
||||
type StoreUploadResponse struct {
|
||||
Success bool `json:"success"`
|
||||
ProcessedOffersCount int `json:"processedOffersCount,omitempty"`
|
||||
NotFoundOffers []Offer `json:"notFoundOffers,omitempty"`
|
||||
}
|
||||
|
||||
// ProductsGroupsResponse type
|
||||
// ProductsGroupsResponse type.
|
||||
type ProductsGroupsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
ProductGroup []ProductGroup `json:"productGroup,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ProductsResponse type
|
||||
// ProductsResponse type.
|
||||
type ProductsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Products []Product `json:"products,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ProductsPropertiesResponse type
|
||||
// ProductsPropertiesResponse type.
|
||||
type ProductsPropertiesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Properties []Property `json:"properties,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// DeliveryShipmentsResponse type
|
||||
// DeliveryShipmentsResponse type.
|
||||
type DeliveryShipmentsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
DeliveryShipments []DeliveryShipment `json:"deliveryShipments,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// DeliveryShipmentResponse type
|
||||
// DeliveryShipmentResponse type.
|
||||
type DeliveryShipmentResponse struct {
|
||||
Success bool `json:"success"`
|
||||
DeliveryShipment *DeliveryShipment `json:"deliveryShipment,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// DeliveryShipmentUpdateResponse type
|
||||
// DeliveryShipmentUpdateResponse type.
|
||||
type DeliveryShipmentUpdateResponse struct {
|
||||
Success bool `json:"success"`
|
||||
ID int `json:"id,omitempty"`
|
||||
Status string `json:"status,omitempty"`
|
||||
}
|
||||
|
||||
// IntegrationModuleResponse type
|
||||
// IntegrationModuleResponse type.
|
||||
type IntegrationModuleResponse struct {
|
||||
Success bool `json:"success"`
|
||||
IntegrationModule *IntegrationModule `json:"integrationModule,omitempty"`
|
||||
}
|
||||
|
||||
// IntegrationModuleEditResponse type
|
||||
// IntegrationModuleEditResponse type.
|
||||
type IntegrationModuleEditResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Info ResponseInfo `json:"info,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ResponseInfo type
|
||||
// ResponseInfo type.
|
||||
type ResponseInfo struct {
|
||||
MgTransportInfo MgInfo `json:"mgTransport,omitempty,brackets"`
|
||||
MgBotInfo MgInfo `json:"mgBot,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// MgInfo type
|
||||
// MgInfo type.
|
||||
type MgInfo struct {
|
||||
EndpointUrl string `json:"endpointUrl"`
|
||||
Token string `json:"token"`
|
||||
}
|
||||
|
||||
// CostsResponse type
|
||||
// CostsResponse type.
|
||||
type CostsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Costs []Cost `json:"costs,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CostsUploadResponse type
|
||||
// CostsUploadResponse type.
|
||||
type CostsUploadResponse struct {
|
||||
Success bool `json:"success"`
|
||||
UploadedCosts []int `json:"uploadedCosts,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CostsDeleteResponse type
|
||||
// CostsDeleteResponse type.
|
||||
type CostsDeleteResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Count int `json:"count,omitempty,brackets"`
|
||||
NotRemovedIds []int `json:"notRemovedIds,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CostResponse type
|
||||
// CostResponse type.
|
||||
type CostResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Cost *Cost `json:"cost,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// FilesResponse type
|
||||
// FilesResponse type.
|
||||
type FilesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
Files []File `json:"files,omitempty"`
|
||||
}
|
||||
|
||||
// FileUpload response
|
||||
// FileUpload response.
|
||||
type FileUploadResponse struct {
|
||||
Success bool `json:"success"`
|
||||
File *File `json:"file,omitempty"`
|
||||
}
|
||||
|
||||
// FileResponse type
|
||||
// FileResponse type.
|
||||
type FileResponse struct {
|
||||
Success bool `json:"success"`
|
||||
File *File `json:"file,omitempty"`
|
||||
}
|
||||
|
||||
// CustomFieldsResponse type
|
||||
// CustomFieldsResponse type.
|
||||
type CustomFieldsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
CustomFields []CustomFields `json:"customFields,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CustomDictionariesResponse type
|
||||
// CustomDictionariesResponse type.
|
||||
type CustomDictionariesResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Pagination *Pagination `json:"pagination,omitempty"`
|
||||
CustomDictionaries *[]CustomDictionary `json:"customDictionaries,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CustomResponse type
|
||||
// CustomResponse type.
|
||||
type CustomResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Code string `json:"code,omitempty"`
|
||||
}
|
||||
|
||||
// CustomDictionaryResponse type
|
||||
// CustomDictionaryResponse type.
|
||||
type CustomDictionaryResponse struct {
|
||||
Success bool `json:"success"`
|
||||
CustomDictionary *CustomDictionary `json:"CustomDictionary,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CustomFieldResponse type
|
||||
// CustomFieldResponse type.
|
||||
type CustomFieldResponse struct {
|
||||
Success bool `json:"success"`
|
||||
CustomField CustomFields `json:"customField,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// UnitsResponse type
|
||||
// UnitsResponse type.
|
||||
type UnitsResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Units *[]Unit `json:"units,omitempty,brackets"`
|
||||
|
|
180
v5/types.go
180
v5/types.go
|
@ -7,13 +7,13 @@ import (
|
|||
"strings"
|
||||
)
|
||||
|
||||
// ByID is "id" constant to use as `by` property in methods
|
||||
// ByID is "id" constant to use as `by` property in methods.
|
||||
const ByID = "id"
|
||||
|
||||
// ByExternalId is "externalId" constant to use as `by` property in methods
|
||||
// ByExternalId is "externalId" constant to use as `by` property in methods.
|
||||
const ByExternalID = "externalId"
|
||||
|
||||
// Client type
|
||||
// Client type.
|
||||
type Client struct {
|
||||
URL string
|
||||
Key string
|
||||
|
@ -21,7 +21,7 @@ type Client struct {
|
|||
httpClient *http.Client
|
||||
}
|
||||
|
||||
// Pagination type
|
||||
// Pagination type.
|
||||
type Pagination struct {
|
||||
Limit int `json:"limit,omitempty"`
|
||||
TotalCount int `json:"totalCount,omitempty"`
|
||||
|
@ -29,7 +29,7 @@ type Pagination struct {
|
|||
TotalPageCount int `json:"totalPageCount,omitempty"`
|
||||
}
|
||||
|
||||
// Address type
|
||||
// Address type.
|
||||
type Address struct {
|
||||
Index string `json:"index,omitempty"`
|
||||
CountryIso string `json:"countryIso,omitempty"`
|
||||
|
@ -51,7 +51,7 @@ type Address struct {
|
|||
Text string `json:"text,omitempty"`
|
||||
}
|
||||
|
||||
// GeoHierarchyRow type
|
||||
// GeoHierarchyRow type.
|
||||
type GeoHierarchyRow struct {
|
||||
Country string `json:"country,omitempty"`
|
||||
Region string `json:"region,omitempty"`
|
||||
|
@ -60,7 +60,7 @@ type GeoHierarchyRow struct {
|
|||
CityID int `json:"cityId,omitempty"`
|
||||
}
|
||||
|
||||
// Source type
|
||||
// Source type.
|
||||
type Source struct {
|
||||
Source string `json:"source,omitempty"`
|
||||
Medium string `json:"medium,omitempty"`
|
||||
|
@ -69,7 +69,7 @@ type Source struct {
|
|||
Content string `json:"content,omitempty"`
|
||||
}
|
||||
|
||||
// Contragent type
|
||||
// Contragent type.
|
||||
type Contragent struct {
|
||||
ContragentType string `json:"contragentType,omitempty"`
|
||||
LegalName string `json:"legalName,omitempty"`
|
||||
|
@ -88,12 +88,12 @@ type Contragent struct {
|
|||
BankAccount string `json:"bankAccount,omitempty"`
|
||||
}
|
||||
|
||||
// APIKey type
|
||||
// APIKey type.
|
||||
type APIKey struct {
|
||||
Current bool `json:"current,omitempty"`
|
||||
}
|
||||
|
||||
// Property type
|
||||
// Property type.
|
||||
type Property struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
Name string `json:"name,omitempty"`
|
||||
|
@ -101,13 +101,13 @@ type Property struct {
|
|||
Sites []string `json:"Sites,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// IdentifiersPair type
|
||||
// IdentifiersPair type.
|
||||
type IdentifiersPair struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
}
|
||||
|
||||
// DeliveryTime type
|
||||
// DeliveryTime type.
|
||||
type DeliveryTime struct {
|
||||
From string `json:"from,omitempty"`
|
||||
To string `json:"to,omitempty"`
|
||||
|
@ -118,7 +118,7 @@ type DeliveryTime struct {
|
|||
Customer related types
|
||||
*/
|
||||
|
||||
// Customer type
|
||||
// Customer type.
|
||||
type Customer struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -157,7 +157,7 @@ type Customer struct {
|
|||
Tags []Tag `json:"tags,brackets,omitempty"`
|
||||
}
|
||||
|
||||
// CorporateCustomer type
|
||||
// CorporateCustomer type.
|
||||
type CorporateCustomer struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -229,19 +229,19 @@ type Company struct {
|
|||
CustomFields map[string]string `json:"customFields,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomerNote type
|
||||
// CorporateCustomerNote type.
|
||||
type CorporateCustomerNote struct {
|
||||
ManagerID int `json:"managerId,omitempty"`
|
||||
Text string `json:"text,omitempty"`
|
||||
Customer *IdentifiersPair `json:"customer,omitempty"`
|
||||
}
|
||||
|
||||
// Phone type
|
||||
// Phone type.
|
||||
type Phone struct {
|
||||
Number string `json:"number,omitempty"`
|
||||
}
|
||||
|
||||
// CustomerHistoryRecord type
|
||||
// CustomerHistoryRecord type.
|
||||
type CustomerHistoryRecord struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
CreatedAt string `json:"createdAt,omitempty"`
|
||||
|
@ -254,7 +254,7 @@ type CustomerHistoryRecord struct {
|
|||
Customer *Customer `json:"customer,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// CorporateCustomerHistoryRecord type
|
||||
// CorporateCustomerHistoryRecord type.
|
||||
type CorporateCustomerHistoryRecord struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
CreatedAt string `json:"createdAt,omitempty"`
|
||||
|
@ -271,7 +271,7 @@ type CorporateCustomerHistoryRecord struct {
|
|||
Order related types
|
||||
*/
|
||||
|
||||
// Order type
|
||||
// Order type.
|
||||
type Order struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -324,7 +324,7 @@ type Order struct {
|
|||
Payments map[string]OrderPayment `json:"payments,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// OrdersStatus type
|
||||
// OrdersStatus type.
|
||||
type OrdersStatus struct {
|
||||
ID int `json:"id"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -332,7 +332,7 @@ type OrdersStatus struct {
|
|||
Group string `json:"group"`
|
||||
}
|
||||
|
||||
// OrderDelivery type
|
||||
// OrderDelivery type.
|
||||
type OrderDelivery struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
IntegrationCode string `json:"integrationCode,omitempty"`
|
||||
|
@ -346,21 +346,21 @@ type OrderDelivery struct {
|
|||
Data *OrderDeliveryData `json:"data,omitempty"`
|
||||
}
|
||||
|
||||
// OrderDeliveryTime type
|
||||
// OrderDeliveryTime type.
|
||||
type OrderDeliveryTime struct {
|
||||
From string `json:"from,omitempty"`
|
||||
To string `json:"to,omitempty"`
|
||||
Custom string `json:"custom,omitempty"`
|
||||
}
|
||||
|
||||
// OrderDeliveryService type
|
||||
// OrderDeliveryService type.
|
||||
type OrderDeliveryService struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
Active bool `json:"active,omitempty"`
|
||||
}
|
||||
|
||||
// OrderDeliveryDataBasic type
|
||||
// OrderDeliveryDataBasic type.
|
||||
type OrderDeliveryDataBasic struct {
|
||||
TrackNumber string `json:"trackNumber,omitempty"`
|
||||
Status string `json:"status,omitempty"`
|
||||
|
@ -368,13 +368,13 @@ type OrderDeliveryDataBasic struct {
|
|||
PayerType string `json:"payerType,omitempty"`
|
||||
}
|
||||
|
||||
// OrderDeliveryData type
|
||||
// OrderDeliveryData type.
|
||||
type OrderDeliveryData struct {
|
||||
OrderDeliveryDataBasic
|
||||
AdditionalFields map[string]interface{}
|
||||
}
|
||||
|
||||
// UnmarshalJSON method
|
||||
// UnmarshalJSON method.
|
||||
func (v *OrderDeliveryData) UnmarshalJSON(b []byte) error {
|
||||
var additionalData map[string]interface{}
|
||||
json.Unmarshal(b, &additionalData)
|
||||
|
@ -396,7 +396,7 @@ func (v *OrderDeliveryData) UnmarshalJSON(b []byte) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
// MarshalJSON method
|
||||
// MarshalJSON method.
|
||||
func (v OrderDeliveryData) MarshalJSON() ([]byte, error) {
|
||||
result := map[string]interface{}{}
|
||||
data, _ := json.Marshal(v.OrderDeliveryDataBasic)
|
||||
|
@ -409,13 +409,13 @@ func (v OrderDeliveryData) MarshalJSON() ([]byte, error) {
|
|||
return json.Marshal(result)
|
||||
}
|
||||
|
||||
// OrderMarketplace type
|
||||
// OrderMarketplace type.
|
||||
type OrderMarketplace struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
OrderID string `json:"orderId,omitempty"`
|
||||
}
|
||||
|
||||
// OrderPayment type
|
||||
// OrderPayment type.
|
||||
type OrderPayment struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -426,7 +426,7 @@ type OrderPayment struct {
|
|||
Comment string `json:"comment,omitempty"`
|
||||
}
|
||||
|
||||
// OrderItem type
|
||||
// OrderItem type.
|
||||
type OrderItem struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
InitialPrice float32 `json:"initialPrice,omitempty"`
|
||||
|
@ -446,7 +446,7 @@ type OrderItem struct {
|
|||
PriceType *PriceType `json:"priceType,omitempty"`
|
||||
}
|
||||
|
||||
// OrdersHistoryRecord type
|
||||
// OrdersHistoryRecord type.
|
||||
type OrdersHistoryRecord struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
CreatedAt string `json:"createdAt,omitempty"`
|
||||
|
@ -459,7 +459,7 @@ type OrdersHistoryRecord struct {
|
|||
Order *Order `json:"order,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// Pack type
|
||||
// Pack type.
|
||||
type Pack struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
PurchasePrice float32 `json:"purchasePrice,omitempty"`
|
||||
|
@ -473,14 +473,14 @@ type Pack struct {
|
|||
Unit *Unit `json:"unit,omitempty"`
|
||||
}
|
||||
|
||||
// PackItem type
|
||||
// PackItem type.
|
||||
type PackItem struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
Order *Order `json:"order,omitempty"`
|
||||
Offer *Offer `json:"offer,omitempty"`
|
||||
}
|
||||
|
||||
// PacksHistoryRecord type
|
||||
// PacksHistoryRecord type.
|
||||
type PacksHistoryRecord struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
CreatedAt string `json:"createdAt,omitempty"`
|
||||
|
@ -492,7 +492,7 @@ type PacksHistoryRecord struct {
|
|||
Pack *Pack `json:"pack,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// Offer type
|
||||
// Offer type.
|
||||
type Offer struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -514,14 +514,14 @@ type Offer struct {
|
|||
Unit *Unit `json:"unit,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// Inventory type
|
||||
// Inventory type.
|
||||
type Inventory struct {
|
||||
PurchasePrice float32 `json:"purchasePrice,omitempty"`
|
||||
Quantity float32 `json:"quantity,omitempty"`
|
||||
Store string `json:"store,omitempty"`
|
||||
}
|
||||
|
||||
// InventoryUpload type
|
||||
// InventoryUpload type.
|
||||
type InventoryUpload struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -529,21 +529,21 @@ type InventoryUpload struct {
|
|||
Stores []InventoryUploadStore `json:"stores,omitempty"`
|
||||
}
|
||||
|
||||
// InventoryUploadStore type
|
||||
// InventoryUploadStore type.
|
||||
type InventoryUploadStore struct {
|
||||
PurchasePrice float32 `json:"purchasePrice,omitempty"`
|
||||
Available float32 `json:"available,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
}
|
||||
|
||||
// OfferPrice type
|
||||
// OfferPrice type.
|
||||
type OfferPrice struct {
|
||||
Price float32 `json:"price,omitempty"`
|
||||
Ordering int `json:"ordering,omitempty"`
|
||||
PriceType string `json:"priceType,omitempty"`
|
||||
}
|
||||
|
||||
// OfferPriceUpload type
|
||||
// OfferPriceUpload type.
|
||||
type OfferPriceUpload struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -552,13 +552,13 @@ type OfferPriceUpload struct {
|
|||
Prices []PriceUpload `json:"prices,omitempty"`
|
||||
}
|
||||
|
||||
// PriceUpload type
|
||||
// PriceUpload type.
|
||||
type PriceUpload struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
Price float32 `json:"price,omitempty"`
|
||||
}
|
||||
|
||||
// Unit type
|
||||
// Unit type.
|
||||
type Unit struct {
|
||||
Code string `json:"code"`
|
||||
Name string `json:"name"`
|
||||
|
@ -571,7 +571,7 @@ type Unit struct {
|
|||
User related types
|
||||
*/
|
||||
|
||||
// User type
|
||||
// User type.
|
||||
type User struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
FirstName string `json:"firstName,omitempty"`
|
||||
|
@ -589,7 +589,7 @@ type User struct {
|
|||
MgUserId uint64 `json:"mgUserId,omitempty"`
|
||||
}
|
||||
|
||||
// UserGroup type
|
||||
// UserGroup type.
|
||||
type UserGroup struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -608,7 +608,7 @@ type UserGroup struct {
|
|||
Task related types
|
||||
*/
|
||||
|
||||
// Task type
|
||||
// Task type.
|
||||
type Task struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
PerformerID int `json:"performerId,omitempty"`
|
||||
|
@ -629,7 +629,7 @@ type Task struct {
|
|||
Notes related types
|
||||
*/
|
||||
|
||||
// Note type
|
||||
// Note type.
|
||||
type Note struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ManagerID int `json:"managerId,omitempty"`
|
||||
|
@ -642,7 +642,7 @@ type Note struct {
|
|||
Payments related types
|
||||
*/
|
||||
|
||||
// Payment type
|
||||
// Payment type.
|
||||
type Payment struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ExternalID string `json:"externalId,omitempty"`
|
||||
|
@ -658,7 +658,7 @@ type Payment struct {
|
|||
Segment related types
|
||||
*/
|
||||
|
||||
// Segment type
|
||||
// Segment type.
|
||||
type Segment struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -690,7 +690,7 @@ type Settings struct {
|
|||
Reference related types
|
||||
*/
|
||||
|
||||
// CostGroup type
|
||||
// CostGroup type.
|
||||
type CostGroup struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -699,7 +699,7 @@ type CostGroup struct {
|
|||
Ordering int `json:"ordering,omitempty"`
|
||||
}
|
||||
|
||||
// CostItem type
|
||||
// CostItem type.
|
||||
type CostItem struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -712,7 +712,7 @@ type CostItem struct {
|
|||
Source *Source `json:"source,omitempty"`
|
||||
}
|
||||
|
||||
// Courier type
|
||||
// Courier type.
|
||||
type Courier struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
FirstName string `json:"firstName,omitempty"`
|
||||
|
@ -724,14 +724,14 @@ type Courier struct {
|
|||
Phone *Phone `json:"phone,omitempty"`
|
||||
}
|
||||
|
||||
// DeliveryService type
|
||||
// DeliveryService type.
|
||||
type DeliveryService struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
Active bool `json:"active,omitempty"`
|
||||
}
|
||||
|
||||
// DeliveryType type
|
||||
// DeliveryType type.
|
||||
type DeliveryType struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -746,7 +746,7 @@ type DeliveryType struct {
|
|||
PaymentTypes []string `json:"paymentTypes,omitempty"`
|
||||
}
|
||||
|
||||
// LegalEntity type
|
||||
// LegalEntity type.
|
||||
type LegalEntity struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
VatRate string `json:"vatRate,omitempty"`
|
||||
|
@ -768,7 +768,7 @@ type LegalEntity struct {
|
|||
BankAccount string `json:"bankAccount,omitempty"`
|
||||
}
|
||||
|
||||
// OrderMethod type
|
||||
// OrderMethod type.
|
||||
type OrderMethod struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -777,7 +777,7 @@ type OrderMethod struct {
|
|||
DefaultForAPI bool `json:"defaultForApi,omitempty"`
|
||||
}
|
||||
|
||||
// OrderType type
|
||||
// OrderType type.
|
||||
type OrderType struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -786,7 +786,7 @@ type OrderType struct {
|
|||
DefaultForAPI bool `json:"defaultForApi,omitempty"`
|
||||
}
|
||||
|
||||
// PaymentStatus type
|
||||
// PaymentStatus type.
|
||||
type PaymentStatus struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -799,7 +799,7 @@ type PaymentStatus struct {
|
|||
PaymentTypes []string `json:"paymentTypes,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// PaymentType type
|
||||
// PaymentType type.
|
||||
type PaymentType struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -811,7 +811,7 @@ type PaymentType struct {
|
|||
PaymentStatuses []string `json:"PaymentStatuses,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// PriceType type
|
||||
// PriceType type.
|
||||
type PriceType struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -825,7 +825,7 @@ type PriceType struct {
|
|||
Geo []GeoHierarchyRow `json:"geo,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// ProductStatus type
|
||||
// ProductStatus type.
|
||||
type ProductStatus struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -837,7 +837,7 @@ type ProductStatus struct {
|
|||
OrderStatusForProductStatus string `json:"orderStatusForProductStatus,omitempty"`
|
||||
}
|
||||
|
||||
// Status type
|
||||
// Status type.
|
||||
type Status struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -846,7 +846,7 @@ type Status struct {
|
|||
Group string `json:"group,omitempty"`
|
||||
}
|
||||
|
||||
// StatusGroup type
|
||||
// StatusGroup type.
|
||||
type StatusGroup struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -856,7 +856,7 @@ type StatusGroup struct {
|
|||
Statuses []string `json:"statuses,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// Site type
|
||||
// Site type.
|
||||
type Site struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -873,7 +873,7 @@ type Site struct {
|
|||
Contragent *LegalEntity `json:"contragent,omitempty"`
|
||||
}
|
||||
|
||||
// Store type
|
||||
// Store type.
|
||||
type Store struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -888,7 +888,7 @@ type Store struct {
|
|||
Address *Address `json:"address,omitempty"`
|
||||
}
|
||||
|
||||
// ProductGroup type
|
||||
// ProductGroup type.
|
||||
type ProductGroup struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
ParentID int `json:"parentId,omitempty"`
|
||||
|
@ -897,7 +897,7 @@ type ProductGroup struct {
|
|||
Active bool `json:"active,omitempty"`
|
||||
}
|
||||
|
||||
// Product type
|
||||
// Product type.
|
||||
type Product struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
MaxPrice float32 `json:"maxPrice,omitempty"`
|
||||
|
@ -920,14 +920,14 @@ type Product struct {
|
|||
Properties map[string]string `json:"properties,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// DeliveryHistoryRecord type
|
||||
// DeliveryHistoryRecord type.
|
||||
type DeliveryHistoryRecord struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
UpdatedAt string `json:"updatedAt,omitempty"`
|
||||
Comment string `json:"comment,omitempty"`
|
||||
}
|
||||
|
||||
// DeliveryShipment type
|
||||
// DeliveryShipment type.
|
||||
type DeliveryShipment struct {
|
||||
IntegrationCode string `json:"integrationCode,omitempty"`
|
||||
ID int `json:"id,omitempty"`
|
||||
|
@ -944,7 +944,7 @@ type DeliveryShipment struct {
|
|||
ExtraData map[string]string `json:"extraData,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// IntegrationModule type
|
||||
// IntegrationModule type.
|
||||
type IntegrationModule struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
IntegrationCode string `json:"integrationCode,omitempty"`
|
||||
|
@ -961,7 +961,7 @@ type IntegrationModule struct {
|
|||
Integrations *Integrations `json:"integrations,omitempty"`
|
||||
}
|
||||
|
||||
// Integrations type
|
||||
// Integrations type.
|
||||
type Integrations struct {
|
||||
Telephony *Telephony `json:"telephony,omitempty"`
|
||||
Delivery *Delivery `json:"delivery,omitempty"`
|
||||
|
@ -970,7 +970,7 @@ type Integrations struct {
|
|||
MgBot *MgBot `json:"mgBot,omitempty"`
|
||||
}
|
||||
|
||||
// Delivery type
|
||||
// Delivery type.
|
||||
type Delivery struct {
|
||||
Description string `json:"description,omitempty"`
|
||||
Actions map[string]string `json:"actions,omitempty,brackets"`
|
||||
|
@ -989,20 +989,20 @@ type Delivery struct {
|
|||
ShipmentDataFieldList []DeliveryDataField `json:"shipmentDataFieldList,omitempty"`
|
||||
}
|
||||
|
||||
// DeliveryStatus type
|
||||
// DeliveryStatus type.
|
||||
type DeliveryStatus struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
Name string `json:"name,omitempty"`
|
||||
IsEditable bool `json:"isEditable,omitempty"`
|
||||
}
|
||||
|
||||
// Plate type
|
||||
// Plate type.
|
||||
type Plate struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
Label string `json:"label,omitempty"`
|
||||
}
|
||||
|
||||
// DeliveryDataField type
|
||||
// DeliveryDataField type.
|
||||
type DeliveryDataField struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
Label string `json:"label,omitempty"`
|
||||
|
@ -1015,7 +1015,7 @@ type DeliveryDataField struct {
|
|||
Editable bool `json:"editable,omitempty"`
|
||||
}
|
||||
|
||||
// Telephony type
|
||||
// Telephony type.
|
||||
type Telephony struct {
|
||||
MakeCallURL string `json:"makeCallUrl,omitempty"`
|
||||
AllowEdit bool `json:"allowEdit,omitempty"`
|
||||
|
@ -1027,43 +1027,43 @@ type Telephony struct {
|
|||
ExternalPhones []ExternalPhone `json:"externalPhones,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// AdditionalCode type
|
||||
// AdditionalCode type.
|
||||
type AdditionalCode struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
UserID string `json:"userId,omitempty"`
|
||||
}
|
||||
|
||||
// ExternalPhone type
|
||||
// ExternalPhone type.
|
||||
type ExternalPhone struct {
|
||||
SiteCode string `json:"siteCode,omitempty"`
|
||||
ExternalPhone string `json:"externalPhone,omitempty"`
|
||||
}
|
||||
|
||||
// Warehouse type
|
||||
// Warehouse type.
|
||||
type Warehouse struct {
|
||||
Actions []Action `json:"actions,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// Action type
|
||||
// Action type.
|
||||
type Action struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
URL string `json:"url,omitempty"`
|
||||
CallPoints []string `json:"callPoints,omitempty"`
|
||||
}
|
||||
|
||||
// MgTransport type
|
||||
// MgTransport type.
|
||||
type MgTransport struct {
|
||||
WebhookUrl string `json:"webhookUrl,omitempty"`
|
||||
}
|
||||
|
||||
// MgBot type
|
||||
// MgBot type.
|
||||
type MgBot struct{}
|
||||
|
||||
/**
|
||||
Cost related types
|
||||
*/
|
||||
|
||||
// CostRecord type
|
||||
// CostRecord type.
|
||||
type CostRecord struct {
|
||||
Source *Source `json:"source,omitempty"`
|
||||
Comment string `json:"comment,omitempty"`
|
||||
|
@ -1076,7 +1076,7 @@ type CostRecord struct {
|
|||
Sites []string `json:"sites,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// Cost type
|
||||
// Cost type.
|
||||
type Cost struct {
|
||||
Source *Source `json:"source,omitempty"`
|
||||
ID int `json:"id,omitempty"`
|
||||
|
@ -1092,7 +1092,7 @@ type Cost struct {
|
|||
Sites []string `json:"sites,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// File type
|
||||
// File type.
|
||||
type File struct {
|
||||
ID int `json:"id,omitempty"`
|
||||
Filename string `json:"filename,omitempty"`
|
||||
|
@ -1102,13 +1102,13 @@ type File struct {
|
|||
Attachment []Attachment `json:"attachment,omitempty"`
|
||||
}
|
||||
|
||||
// Attachment type
|
||||
// Attachment type.
|
||||
type Attachment struct {
|
||||
Customer *Customer `json:"customer,omitempty"`
|
||||
Order *Order `json:"order,omitempty"`
|
||||
}
|
||||
|
||||
// CustomFields type
|
||||
// CustomFields type.
|
||||
type CustomFields struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
|
@ -1129,27 +1129,27 @@ type CustomFields struct {
|
|||
CustomDictionaries related types
|
||||
*/
|
||||
|
||||
// CustomDictionary type
|
||||
// CustomDictionary type.
|
||||
type CustomDictionary struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
Elements []Element `json:"elements,omitempty,brackets"`
|
||||
}
|
||||
|
||||
// Element type
|
||||
// Element type.
|
||||
type Element struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Code string `json:"code,omitempty"`
|
||||
Ordering int `json:"ordering,omitempty"`
|
||||
}
|
||||
|
||||
// Activity struct
|
||||
// Activity struct.
|
||||
type Activity struct {
|
||||
Active bool `json:"active"`
|
||||
Freeze bool `json:"freeze"`
|
||||
}
|
||||
|
||||
// Tag struct
|
||||
// Tag struct.
|
||||
type Tag struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Color string `json:"color,omitempty"`
|
||||
|
|
Loading…
Add table
Reference in a new issue