Files
woogo/entity/customer_download_file.go

9 lines
200 B
Go
Raw Normal View History

2025-04-08 19:24:11 +02:00
package entity
// https://woocommerce.github.io/woocommerce-rest-api-docs/?php#retrieve-customer-downloads
type CustomerDownloadFile struct {
Name string `json:"name"`
File string `json:"file"`
}