Files

16 lines
294 B
Go
Raw Permalink Normal View History

2025-09-23 14:34:24 +03:00
package audit
2026-02-20 17:30:02 +03:00
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v14/interfaces"
2025-09-23 14:34:24 +03:00
// Structure for creating request to audit
type Audit struct {
client interfaces.Caller
}
// Builder for audit endpoint
2026-07-17 16:55:08 +04:00
func New(client interfaces.Caller) *Audit {
2025-09-23 14:34:24 +03:00
return &Audit{
client: client,
}
2026-07-17 16:55:08 +04:00
}