15 lines
460 B
Go
15 lines
460 B
Go
package responses
|
|
|
|
type CreateAlternativeComponentResponse struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type UpdateAlternativeComponentResponse struct {
|
|
ID int64 `json:"id"`
|
|
InvoiceConfigItemID int64 `json:"invoiceConfigItemId"`
|
|
AlternativeComponentID int64 `json:"alternativeComponentId"`
|
|
ConversionRatio string `json:"conversionRatio"`
|
|
Priority int32 `json:"priority"`
|
|
Note string `json:"note"`
|
|
}
|