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

19 lines
870 B
Go

package entity
// https://woocommerce.github.io/woocommerce-rest-api-docs/?php#retrieve-customer-downloads
// CustomerDownload customer download properties
type CustomerDownload struct {
DownloadId string `json:"download_id"`
DownloadURL string `json:"download_url"`
ProductId string `json:"product_id"`
ProductName string `json:"product_name"`
DownloadName string `json:"download_name"`
OrderId int `json:"order_id"`
OrderKey string `json:"order_key"`
DownloadRemaining string `json:"download_remaining"`
AccessExpires string `json:"access_expires"`
AccessExpiresGMT string `json:"access_expires_gmt"`
File CustomerDownloadFile `json:"file"`
}