bitrix/internal/models/getListPipelines.go

18 lines
497 B
Go
Raw Normal View History

2024-09-20 14:41:33 +00:00
package models
2024-09-26 08:19:51 +00:00
import "penahub.gitlab.yandexcloud.net/backend/quiz/common.git/model"
2024-09-20 14:41:33 +00:00
type Category struct {
2024-09-26 10:56:17 +00:00
ID int32 `json:"id"`
2024-09-26 08:19:51 +00:00
Name string `json:"name"`
2024-09-26 10:56:17 +00:00
Sort int32 `json:"sort"`
2024-09-26 08:19:51 +00:00
EntityTypeId model.IntegerEntityType `json:"entityTypeId"`
IsDefault model.BitrixIsDefault `json:"isDefault"`
2024-09-20 14:41:33 +00:00
}
type CategoryResponse struct {
2024-09-22 09:30:02 +00:00
Result struct {
Categories []Category `json:"categories"`
} `json:"result"`
2024-09-20 14:41:33 +00:00
}