All checks were successful
Build and Release / release (push) Successful in 1m14s
9 lines
367 B
Go
9 lines
367 B
Go
package request
|
|
|
|
type SearchEntityDto struct {
|
|
Cursor string `json:"cursor" query:"cursor" validate:"omitempty,uuid"`
|
|
Limit int `json:"limit" query:"limit" validate:"omitempty,min=1,max=100"`
|
|
Name string `json:"name" query:"name" validate:"omitempty,max=255"`
|
|
ProjectID *string `json:"project_id" query:"project_id" validate:"omitempty,uuid"`
|
|
}
|