Skip to content

Commit 268217b

Browse files
committed
Change ScheduledTimestamp type to int64
1 parent bc00393 commit 268217b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

types.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ type PipelineSchedulesGroups struct {
189189

190190
// PipelineSchedulesHistory holds information of pipeline schedule history.
191191
type PipelineSchedulesHistory struct {
192-
Label string `json:"label,omitempty" yaml:"label,omitempty"`
193-
ScheduledDate string `json:"scheduled_date,omitempty" yaml:"scheduled_date,omitempty"`
194-
ScheduledTimestamp float64 `json:"scheduled_timestamp,omitempty" yaml:"scheduled_timestamp,omitempty"`
195-
ModificationDate string `json:"modification_date,omitempty" yaml:"modification_date,omitempty"`
196-
BuildCause string `json:"buildCauseBy,omitempty" yaml:"buildCauseBy,omitempty"`
192+
Label string `json:"label,omitempty" yaml:"label,omitempty"`
193+
ScheduledDate string `json:"scheduled_date,omitempty" yaml:"scheduled_date,omitempty"`
194+
ScheduledTimestamp int64 `json:"scheduled_timestamp,omitempty" yaml:"scheduled_timestamp,omitempty"`
195+
ModificationDate string `json:"modification_date,omitempty" yaml:"modification_date,omitempty"`
196+
BuildCause string `json:"buildCauseBy,omitempty" yaml:"buildCauseBy,omitempty"`
197197
}
198198

199199
// ScheduledJobs holds information of Scheduled Jobs.

0 commit comments

Comments
 (0)