19 lines
353 B
Go
19 lines
353 B
Go
// API to manage FLIPGroup instances
|
|
package flipgroup
|
|
|
|
import (
|
|
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
|
|
)
|
|
|
|
// Structure for creating request to FLIPGroup
|
|
type FLIPGroup struct {
|
|
client interfaces.Caller
|
|
}
|
|
|
|
// Builder for FLIPGroup endpoints
|
|
func New(client interfaces.Caller) *FLIPGroup {
|
|
return &FLIPGroup{
|
|
client,
|
|
}
|
|
}
|