Skip to content

Commit e50e585

Browse files
authored
Merge pull request #40 from UnityTech/PPS-361
PPS-361 Remove Omitempty
2 parents f900000 + 654ad24 commit e50e585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

video.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Video struct {
2626
H int `json:"h,omitempty"` // Height of the player in pixels
2727
StartDelay int `json:"startdelay,omitempty"` // Indicates the start delay in seconds
2828
Linearity int `json:"linearity,omitempty"` // Indicates whether the ad impression is linear or non-linear
29-
Skip int `json:"skip,omitempty"` // Indicates if the player will allow the video to be skipped, where 0 = no, 1 = yes.
29+
Skip int `json:"skip"` // Indicates if the player will allow the video to be skipped, where 0 = no, 1 = yes.
3030
SkipMin int `json:"skipmin,omitempty"` // Videos of total duration greater than this number of seconds can be skippable
3131
SkipAfter int `json:"skipafter,omitempty"` // Number of seconds a video must play before skipping is enabled
3232
Sequence int `json:"sequence,omitempty"` // Default: 1

0 commit comments

Comments
 (0)