14 lines
314 B
Go
14 lines
314 B
Go
package responses
|
|
|
|
type CreateComponentCodeResponse struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type UpdateComponentCodeResponse struct {
|
|
ID int64 `json:"id"`
|
|
ComponentID int64 `json:"componentId"`
|
|
Code string `json:"code"`
|
|
CodeType string `json:"codeType"`
|
|
IsPrimary bool `json:"isPrimary"`
|
|
}
|