Files
plexgo/retry/config.go
2024-09-09 18:15:22 +00:00

17 lines
327 B
Go

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
package retry
type BackoffStrategy struct {
InitialInterval int
MaxInterval int
Exponent float64
MaxElapsedTime int
}
type Config struct {
Strategy string
Backoff *BackoffStrategy
RetryConnectionErrors bool
}