16 lines
320 B
Go
16 lines
320 B
Go
|
|
package qospolicy
|
||
|
|
|
||
|
|
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v16/interfaces"
|
||
|
|
|
||
|
|
// Structure for creating request to QoS policy
|
||
|
|
type QoSPolicy struct {
|
||
|
|
client interfaces.Caller
|
||
|
|
}
|
||
|
|
|
||
|
|
// Builder for QoS policy endpoint
|
||
|
|
func New(client interfaces.Caller) *QoSPolicy {
|
||
|
|
return &QoSPolicy{
|
||
|
|
client: client,
|
||
|
|
}
|
||
|
|
}
|