Skip to content

Commit

Permalink
Add missing params for endpoint configs
Browse files Browse the repository at this point in the history
  • Loading branch information
wasuradananjith committed Dec 4, 2020
1 parent acf581b commit 30f496e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions import-export-cli/specs/params/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ type Configuration struct {
RetryDelay *int `yaml:"retryDelay" json:"retryDelay,string"`
// Factor used for config
Factor *int `yaml:"factor" json:"factor,string"`
// RetryErroCode used for config
RetryErroCode *int `yaml:"retryErroCode" json:"retryErroCode,string"`
// SuspendErrorCode used for config
SuspendErrorCode *int `yaml:"suspendErrorCode" json:"suspendErrorCode,string"`
// SuspendDuration used for config
SuspendDuration *int `yaml:"suspendDuration" json:"suspendDuration,string"`
// SuspendMaxDuration used for config
SuspendMaxDuration *int `yaml:"suspendMaxDuration" json:"suspendMaxDuration,string"`
// ActionSelect used for config
ActionSelect *string `yaml:"actionSelect" json:"actionSelect"`
// ActionDuration used for config
ActionDuration *int `yaml:"actionDuration" json:"actionDuration,string"`
}

// Endpoint details
Expand Down

0 comments on commit 30f496e

Please sign in to comment.