// 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 }