forked from JointCloud/pcm-coordinator
parent
94bf0d6b6a
commit
8a99562dae
|
@ -2815,10 +2815,27 @@ type GetParticipantsReq struct {
|
|||
}
|
||||
|
||||
type GetParticipantsResp struct {
|
||||
Success bool `json:"success"`
|
||||
Participants []ParticipantSl `json:"participant"`
|
||||
}
|
||||
|
||||
type GetResourceSpecsReq struct {
|
||||
}
|
||||
|
||||
type GetResourceSpecsResp struct {
|
||||
Success bool `json:"success"`
|
||||
ResourceSpecs []ResourceSpecSl `json:"resourceSpecs"`
|
||||
}
|
||||
|
||||
type ResourceSpecSl struct {
|
||||
ParticipantId string `json:"participantId"`
|
||||
ParticipantName string `json:"participantName"`
|
||||
SpecName string `json:"resourceSpecName"`
|
||||
SpecId string `json:"resourceSpecId"`
|
||||
}
|
||||
|
||||
type ParticipantSl struct {
|
||||
ParticipantId string `json:"id"`
|
||||
ParticipantName string `json:"name"`
|
||||
ParticipantType string `json:"type"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue