package requests type CreateShareRequest struct { ResourceType string `json:"resource_type"` ResourceID string `json:"resource_id"` Password *string `json:"password"` ExpiresAt *string `json:"expires_at"` MaxDownloads *int `json:"max_downloads"` } type ShareDownloadRequest struct { Password string `json:"password"` }