Skip to content

Commit

Permalink
Merge pull request #40 from UnityTech/PPS-361
Browse files Browse the repository at this point in the history
PPS-361 Remove Omitempty
  • Loading branch information
CarolynU authored May 29, 2024
2 parents f900000 + 654ad24 commit e50e585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Video struct {
H int `json:"h,omitempty"` // Height of the player in pixels
StartDelay int `json:"startdelay,omitempty"` // Indicates the start delay in seconds
Linearity int `json:"linearity,omitempty"` // Indicates whether the ad impression is linear or non-linear
Skip int `json:"skip,omitempty"` // Indicates if the player will allow the video to be skipped, where 0 = no, 1 = yes.
Skip int `json:"skip"` // Indicates if the player will allow the video to be skipped, where 0 = no, 1 = yes.
SkipMin int `json:"skipmin,omitempty"` // Videos of total duration greater than this number of seconds can be skippable
SkipAfter int `json:"skipafter,omitempty"` // Number of seconds a video must play before skipping is enabled
Sequence int `json:"sequence,omitempty"` // Default: 1
Expand Down

0 comments on commit e50e585

Please sign in to comment.