22 lines
482 B
Go
22 lines
482 B
Go
|
package model
|
||
|
|
||
|
type UserListBitrixResp struct {
|
||
|
Count int64 `json:"count"`
|
||
|
Items []BitrixAccountUser `json:"items"`
|
||
|
}
|
||
|
|
||
|
type UserBitrixListPipelinesResp struct {
|
||
|
Count int64 `json:"count"`
|
||
|
Items []PipelineBitrix `json:"items"`
|
||
|
}
|
||
|
|
||
|
type UserListBitrixStepsResp struct {
|
||
|
Items []StepBitrix `json:"items"`
|
||
|
Count int64 `json:"count"`
|
||
|
}
|
||
|
|
||
|
type UserListBitrixFieldsResp struct {
|
||
|
Count int64 `json:"count"`
|
||
|
Items []BitrixField `json:"items"`
|
||
|
}
|