mirror of
https://github.com/plutov/paypal.git
synced 2025-01-23 18:31:03 +01:00
8 lines
148 B
Go
8 lines
148 B
Go
|
package paypal
|
||
|
|
||
|
type Patch struct {
|
||
|
Operation string `json:"op"`
|
||
|
Path string `json:"path"`
|
||
|
Value interface{} `json:"value"`
|
||
|
}
|