Skip to content

Commit

Permalink
Change ScheduledTimestamp type to int64
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilsbhat committed Jun 25, 2023
1 parent bc00393 commit 268217b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ type PipelineSchedulesGroups struct {

// PipelineSchedulesHistory holds information of pipeline schedule history.
type PipelineSchedulesHistory struct {
Label string `json:"label,omitempty" yaml:"label,omitempty"`
ScheduledDate string `json:"scheduled_date,omitempty" yaml:"scheduled_date,omitempty"`
ScheduledTimestamp float64 `json:"scheduled_timestamp,omitempty" yaml:"scheduled_timestamp,omitempty"`
ModificationDate string `json:"modification_date,omitempty" yaml:"modification_date,omitempty"`
BuildCause string `json:"buildCauseBy,omitempty" yaml:"buildCauseBy,omitempty"`
Label string `json:"label,omitempty" yaml:"label,omitempty"`
ScheduledDate string `json:"scheduled_date,omitempty" yaml:"scheduled_date,omitempty"`
ScheduledTimestamp int64 `json:"scheduled_timestamp,omitempty" yaml:"scheduled_timestamp,omitempty"`
ModificationDate string `json:"modification_date,omitempty" yaml:"modification_date,omitempty"`
BuildCause string `json:"buildCauseBy,omitempty" yaml:"buildCauseBy,omitempty"`
}

// ScheduledJobs holds information of Scheduled Jobs.
Expand Down

0 comments on commit 268217b

Please sign in to comment.