Skip to content

Commit

Permalink
Update November 30, 2023 (#50)
Browse files Browse the repository at this point in the history
Method for RFBS returns operations
  • Loading branch information
diPhantxm authored Nov 30, 2023
1 parent ba8f4ca commit af7c167
Show file tree
Hide file tree
Showing 3 changed files with 847 additions and 0 deletions.
47 changes: 47 additions & 0 deletions ozon/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -587,3 +587,50 @@ const (
// SKU is deleted
SKUAvailabilityUnavailable = "UNAVAILABLE"
)

type RFBSReturnsGroupState string

const (
// All requests
RFBSReturnsGroupStateAll RFBSReturnsGroupState = "All"

// New
RFBSReturnsGroupStateNew RFBSReturnsGroupState = "New"

// Returned product is on the way for check
RFBSReturnsGroupStateDelivering RFBSReturnsGroupState = "Delivering"

// Returned product is being checked
RFBSReturnsGroupStateCheckout RFBSReturnsGroupState = "Checkout"

// Disputed
RFBSReturnsGroupStateArbitration RFBSReturnsGroupState = "Arbitration"

// Approved
RFBSReturnsGroupStateApproved RFBSReturnsGroupState = "Approved"

// Rejected
RFBSReturnsGroupStateRejected RFBSReturnsGroupState = "Rejected"
)

type GetRFBSReturnsCurrency string

const (
// Russian ruble
GetRFBSReturnsCurrencyRUB GetRFBSReturnsCurrency = "RUB"

// Belarusian ruble
GetRFBSReturnsCurrencyBYN GetRFBSReturnsCurrency = "BYN"

// Tenge
GetRFBSReturnsCurrencyKZT GetRFBSReturnsCurrency = "KZT"

// Euro
GetRFBSReturnsCurrencyEUR GetRFBSReturnsCurrency = "EUR"

// US dollar
GetRFBSReturnsCurrencyUSD GetRFBSReturnsCurrency = "USD"

// Yuan
GetRFBSReturnsCurrencyCNY GetRFBSReturnsCurrency = "CNY"
)
Loading

0 comments on commit af7c167

Please sign in to comment.