Files
woogo/entity/customer_download_file.go
scheibling 30fb57f4f7 Created
2025-04-08 19:24:11 +02:00

9 lines
200 B
Go

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"`
}