2026-01-05 23:25:17 +01:00
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
type BulkPeerRequest struct {
|
|
|
|
|
Identifiers []string `json:"Identifiers" binding:"required"`
|
|
|
|
|
Reason string `json:"Reason"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type BulkUserRequest struct {
|
|
|
|
|
Identifiers []string `json:"Identifiers" binding:"required"`
|
|
|
|
|
}
|