Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

Make CompletedAt nullable in activity #22

Merged
merged 1 commit into from
Jan 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion models/simulation_activity.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type SimulationActivity struct {
ActivityName *string `json:"activityName"`

// completed time stamp
CompletedAt strfmt.DateTime `json:"completedAt,omitempty"`
CompletedAt *strfmt.DateTime `json:"completedAt,omitempty"`

// id
ID int32 `json:"id,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION_TAG=0.1.16
VERSION_TAG=0.1.17