diff --git a/api/desc/storelink/pcm-storelink.api b/api/desc/storelink/pcm-storelink.api index 7871c6e3..f1db3a8d 100644 --- a/api/desc/storelink/pcm-storelink.api +++ b/api/desc/storelink/pcm-storelink.api @@ -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"`