mirror of
https://github.com/LukeHagar/plexgo.git
synced 2025-12-06 04:20:46 +00:00
17 lines
327 B
Go
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
|
|
}
|