mirror of
https://github.com/traefik/traefik
synced 2026-02-12 08:38:09 +00:00
13 lines
416 B
Go
13 lines
416 B
Go
package gotransip
|
|
|
|
// CancellationTime represents the possible ways of canceling a contract
|
|
type CancellationTime string
|
|
|
|
var (
|
|
// CancellationTimeEnd specifies to cancel the contract when the contract was
|
|
// due to end anyway
|
|
CancellationTimeEnd CancellationTime = "end"
|
|
// CancellationTimeImmediately specifies to cancel the contract immediately
|
|
CancellationTimeImmediately CancellationTime = "immediately"
|
|
)
|