File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -157,17 +157,17 @@ type CodeBuildLogs struct {
157
157
158
158
// CodeBuildPhase represents the phase of a build and its details
159
159
type CodeBuildPhase struct {
160
- PhaseContext []interface {} `json:"phase-context"`
160
+ PhaseContext []interface {} `json:"phase-context,omitempty "`
161
161
162
162
StartTime CodeBuildTime `json:"start-time"`
163
163
164
- EndTime CodeBuildTime `json:"end-time"`
164
+ EndTime CodeBuildTime `json:"end-time,omitempty "`
165
165
166
- Duration DurationSeconds `json:"duration-in-seconds"`
166
+ Duration DurationSeconds `json:"duration-in-seconds,omitempty "`
167
167
168
168
PhaseType CodeBuildPhaseType `json:"phase-type"`
169
169
170
- PhaseStatus CodeBuildPhaseStatus `json:"phase-status"`
170
+ PhaseStatus CodeBuildPhaseStatus `json:"phase-status,omitempty "`
171
171
}
172
172
173
173
// CodeBuildTime represents the time of the build
You can’t perform that action at this time.
0 commit comments