From 99619996550928eed21398455596619fddb6c22b Mon Sep 17 00:00:00 2001 From: Adam Engebretson Date: Thu, 4 Apr 2024 00:38:24 -0500 Subject: [PATCH] Adding video_file_id to File type (#19) --- vimeo/videos.go | 1 + 1 file changed, 1 insertion(+) diff --git a/vimeo/videos.go b/vimeo/videos.go index c7ac188..d9e165d 100644 --- a/vimeo/videos.go +++ b/vimeo/videos.go @@ -32,6 +32,7 @@ type Stats struct { // File internal object provides access to video file information type File struct { + FileID string `json:"video_file_id,omitempty"` Quality string `json:"quality,omitempty"` Type string `json:"type,omitempty"` Width int `json:"width,omitempty"`