updated the schemas and examples for method responses: methods return the result in binary format

This commit is contained in:
diPhantxm
2023-07-15 02:48:50 +03:00
committed by Kirill
parent 1958dfb94e
commit f11ccb4714
3 changed files with 142 additions and 15 deletions

View File

@@ -479,3 +479,16 @@ const (
GetFBOReturnsReturnStatusAcceptedFromCustomer GetFBOReturnsReturnStatus = "Принят от покупателя"
GetFBOReturnsReturnStatusReceivedAtOzon GetFBOReturnsReturnStatus = "Получен в Ozon"
)
type DigitalActType string
const (
// acceptance certificate
DigitalActTypeOfAcceptance DigitalActType = "act_of_acceptance"
// discrepancy certificate
DigitalActTypeOfMismatch DigitalActType = "act_of_mismatch"
// surplus certificate
DigitalActTypeOfExcess DigitalActType = "act_of_excess"
)