github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/istructsmem/internal/descr/interface_ratelimits.go (about) 1 /* 2 * Copyright (c) 2020-present unTill Pro, Ltd. 3 */ 4 5 package descr 6 7 import ( 8 "time" 9 10 "github.com/voedger/voedger/pkg/istructs" 11 ) 12 13 type RateLimit struct { 14 Kind istructs.RateLimitKind 15 Period time.Duration 16 MaxAllowedPerDuration uint32 17 }