2021-10-27 15:49:06 +03:00
|
|
|
package retailcrm
|
2018-02-27 11:37:15 +03:00
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CustomerRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type CustomerRequest struct {
|
|
|
|
By string `url:"by,omitempty"`
|
|
|
|
Site string `url:"site,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CustomersRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type CustomersRequest struct {
|
|
|
|
Filter CustomersFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CorporateCustomersRequest type.
|
2019-10-16 16:32:31 +03:00
|
|
|
type CorporateCustomersRequest struct {
|
|
|
|
Filter CorporateCustomersFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CorporateCustomersNotesRequest type.
|
2019-10-16 16:32:31 +03:00
|
|
|
type CorporateCustomersNotesRequest struct {
|
|
|
|
Filter CorporateCustomersNotesFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CorporateCustomerAddressesRequest type.
|
2019-10-16 16:32:31 +03:00
|
|
|
type CorporateCustomerAddressesRequest struct {
|
|
|
|
Filter CorporateCustomerAddressesFilter `url:"filter,omitempty"`
|
|
|
|
By string `url:"by,omitempty"`
|
|
|
|
Site string `url:"site,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// IdentifiersPairRequest type.
|
2019-10-16 16:32:31 +03:00
|
|
|
type IdentifiersPairRequest struct {
|
|
|
|
Filter IdentifiersPairFilter `url:"filter,omitempty"`
|
|
|
|
By string `url:"by,omitempty"`
|
|
|
|
Site string `url:"site,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CustomersUploadRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type CustomersUploadRequest struct {
|
|
|
|
Customers []Customer `url:"customers,omitempty,brackets"`
|
|
|
|
Site string `url:"site,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CustomersHistoryRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type CustomersHistoryRequest struct {
|
|
|
|
Filter CustomersHistoryFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CorporateCustomersHistoryRequest type.
|
2019-11-25 10:55:06 +03:00
|
|
|
type CorporateCustomersHistoryRequest struct {
|
|
|
|
Filter CorporateCustomersHistoryFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// OrderRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type OrderRequest struct {
|
|
|
|
By string `url:"by,omitempty"`
|
|
|
|
Site string `url:"site,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// OrdersRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type OrdersRequest struct {
|
|
|
|
Filter OrdersFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// OrdersStatusesRequest type.
|
2020-06-29 16:26:10 +03:00
|
|
|
type OrdersStatusesRequest struct {
|
|
|
|
IDs []int `url:"ids,omitempty,brackets"`
|
|
|
|
ExternalIDs []string `url:"externalIds,omitempty,brackets"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// OrdersUploadRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type OrdersUploadRequest struct {
|
|
|
|
Orders []Order `url:"orders,omitempty,brackets"`
|
|
|
|
Site string `url:"site,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// OrdersHistoryRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type OrdersHistoryRequest struct {
|
|
|
|
Filter OrdersHistoryFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// PacksRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type PacksRequest struct {
|
|
|
|
Filter PacksFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// PacksHistoryRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type PacksHistoryRequest struct {
|
|
|
|
Filter OrdersHistoryFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// UsersRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type UsersRequest struct {
|
|
|
|
Filter UsersFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// UserGroupsRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type UserGroupsRequest struct {
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// TasksRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type TasksRequest struct {
|
|
|
|
Filter TasksFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// NotesRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type NotesRequest struct {
|
2018-04-12 16:43:53 +03:00
|
|
|
Filter NotesFilter `url:"filter,omitempty"`
|
2018-02-27 11:37:15 +03:00
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// SegmentsRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type SegmentsRequest struct {
|
|
|
|
Filter SegmentsFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// InventoriesRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type InventoriesRequest struct {
|
|
|
|
Filter InventoriesFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// ProductsGroupsRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type ProductsGroupsRequest struct {
|
|
|
|
Filter ProductsGroupsFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// ProductsRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type ProductsRequest struct {
|
|
|
|
Filter ProductsFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// ProductsPropertiesRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type ProductsPropertiesRequest struct {
|
|
|
|
Filter ProductsPropertiesFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// DeliveryTrackingRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type DeliveryTrackingRequest struct {
|
2021-01-29 14:29:44 +03:00
|
|
|
DeliveryID string `json:"deliveryId,omitempty"`
|
|
|
|
TrackNumber string `json:"trackNumber,omitempty"`
|
2021-10-27 15:49:06 +03:00
|
|
|
History []DeliveryHistoryRecord `json:"history,omitempty"`
|
|
|
|
ExtraData map[string]string `json:"extraData,omitempty"`
|
2018-02-27 11:37:15 +03:00
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// DeliveryShipmentsRequest type.
|
2018-02-27 11:37:15 +03:00
|
|
|
type DeliveryShipmentsRequest struct {
|
|
|
|
Filter ShipmentFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
2018-04-11 13:39:43 +03:00
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CostsRequest type.
|
2018-04-11 13:39:43 +03:00
|
|
|
type CostsRequest struct {
|
|
|
|
Filter CostsFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// FilesRequest type.
|
2019-09-04 11:38:21 +03:00
|
|
|
type FilesRequest struct {
|
|
|
|
Filter FilesFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CustomFieldsRequest type.
|
2018-04-11 13:39:43 +03:00
|
|
|
type CustomFieldsRequest struct {
|
|
|
|
Filter CustomFieldsFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-04-26 12:09:21 +03:00
|
|
|
// CustomDictionariesRequest type.
|
2018-04-11 13:39:43 +03:00
|
|
|
type CustomDictionariesRequest struct {
|
|
|
|
Filter CustomDictionariesFilter `url:"filter,omitempty"`
|
|
|
|
Limit int `url:"limit,omitempty"`
|
|
|
|
Page int `url:"page,omitempty"`
|
|
|
|
}
|