You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.5 KiB
71 lines
1.5 KiB
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
"gitlab.com/cyclops-utilities/datamodels"
|
|
)
|
|
|
|
// SkuBundle sku bundle
|
|
//
|
|
// swagger:model SkuBundle
|
|
type SkuBundle struct {
|
|
|
|
// ID
|
|
ID string `json:"ID,omitempty" gorm:"primary_key;unique;default:md5(random()::text || clock_timestamp()::text)::uuid"`
|
|
|
|
// name
|
|
// Required: true
|
|
Name *string `json:"Name"`
|
|
|
|
// sku prices
|
|
SkuPrices datamodels.JSONdb `json:"SkuPrices,omitempty" gorm:"type:jsonb"`
|
|
}
|
|
|
|
// Validate validates this sku bundle
|
|
func (m *SkuBundle) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateName(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SkuBundle) validateName(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("Name", "body", m.Name); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *SkuBundle) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *SkuBundle) UnmarshalBinary(b []byte) error {
|
|
var res SkuBundle
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|
|
|