-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcurrencies.go
25 lines (21 loc) · 1.05 KB
/
currencies.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by the Paddle SDK Generator; DO NOT EDIT.
package paddle
import paddleerr "github.com/PaddleHQ/paddle-go-sdk/v3/pkg/paddleerr"
// ErrCurrencyPrimaryBalanceInvalid represents a `currency_primary_balance_invalid` error.
// See https://developer.paddle.com/errors/currencies/currency_primary_balance_invalid for more information.
var ErrCurrencyPrimaryBalanceInvalid = &paddleerr.Error{
Code: "currency_primary_balance_invalid",
Type: paddleerr.ErrorTypeRequestError,
}
// ErrCurrencyCodeInvalid represents a `currency_code_invalid` error.
// See https://developer.paddle.com/errors/currencies/currency_code_invalid for more information.
var ErrCurrencyCodeInvalid = &paddleerr.Error{
Code: "currency_code_invalid",
Type: paddleerr.ErrorTypeRequestError,
}
// ErrCurrencyCodesInvalid represents a `currency_codes_invalid` error.
// See https://developer.paddle.com/errors/currencies/currency_codes_invalid for more information.
var ErrCurrencyCodesInvalid = &paddleerr.Error{
Code: "currency_codes_invalid",
Type: paddleerr.ErrorTypeRequestError,
}