This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_ent_media_file.go
39 lines (37 loc) · 1.74 KB
/
model_ent_media_file.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Gilfoyle server
*
* Cloud-native media hosting & streaming server for businesses.
*
* API version: v1
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
type EntMediaFile struct {
// CreatedAt holds the value of the \"created_at\" field.
CreatedAt string `json:"created_at,omitempty"`
// DurationSeconds holds the value of the \"duration_seconds\" field.
DurationSeconds float32 `json:"duration_seconds,omitempty"`
// Edges holds the relations/edges for other nodes in the graph. The values are being populated by the MediaFileQuery when eager-loading is set.
Edges *EntMediaFileEdges `json:"edges,omitempty"`
// Format holds the value of the \"format\" field.
Format string `json:"format,omitempty"`
// Framerate holds the value of the \"framerate\" field.
Framerate int32 `json:"framerate,omitempty"`
// ID of the ent.
Id string `json:"id,omitempty"`
// MediaType holds the value of the \"media_type\" field.
MediaType string `json:"media_type,omitempty"`
// RenditionName holds the value of the \"rendition_name\" field.
RenditionName string `json:"rendition_name,omitempty"`
// ResolutionHeight holds the value of the \"resolution_height\" field.
ResolutionHeight int32 `json:"resolution_height,omitempty"`
// ResolutionWidth holds the value of the \"resolution_width\" field.
ResolutionWidth int32 `json:"resolution_width,omitempty"`
// TargetBandwidth holds the value of the \"target_bandwidth\" field.
TargetBandwidth int32 `json:"target_bandwidth,omitempty"`
// UpdatedAt holds the value of the \"updated_at\" field.
UpdatedAt string `json:"updated_at,omitempty"`
// VideoBitrate holds the value of the \"video_bitrate\" field.
VideoBitrate int32 `json:"video_bitrate,omitempty"`
}