Files
woogo/entity/order_note.go

13 lines
374 B
Go
Raw Permalink Normal View History

2025-04-08 19:24:11 +02:00
package entity
// OrderNote order note properties
type OrderNote struct {
ID int `json:"id"`
Author string `json:"author"`
DateCreated string `json:"date_created"`
DateCreatedGMT string `json:"date_created_gmt"`
Note string `json:"note"`
CustomerNote bool `json:"customer_note"`
AddedByUser bool `json:"added_by_user"`
}