mirror of
https://github.com/traefik/traefik.git
synced 2025-05-05 23:43:01 +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"
|
|
)
|