forked from JointCloud/pcm-coordinator
parent
48a529e08d
commit
94bf0d6b6a
|
@ -100,7 +100,7 @@ type (
|
|||
|
||||
GetParticipantsResp {
|
||||
Success bool `json:"success"`
|
||||
Participants []Participant `json:"participant"`
|
||||
Participants []ParticipantSl `json:"participant"`
|
||||
}
|
||||
|
||||
GetResourceSpecsReq {
|
||||
|
@ -109,17 +109,17 @@ type (
|
|||
|
||||
GetResourceSpecsResp {
|
||||
Success bool `json:"success"`
|
||||
ResourceSpecs []ResourceSpec `json:"resourceSpecs"`
|
||||
ResourceSpecs []ResourceSpecSl `json:"resourceSpecs"`
|
||||
}
|
||||
|
||||
ResourceSpec {
|
||||
ResourceSpecSl {
|
||||
ParticipantId string `json:"participantId"`
|
||||
ParticipantName string `json:"participantName"`
|
||||
SpecName string `json:"resourceSpecName"`
|
||||
SpecId string `json:"resourceSpecId"`
|
||||
}
|
||||
|
||||
Participant {
|
||||
ParticipantSl {
|
||||
ParticipantId string `json:"id"`
|
||||
ParticipantName string `json:"name"`
|
||||
ParticipantType string `json:"type"`
|
||||
|
|
Loading…
Reference in New Issue