148 lines
3.3 KiB
Go
148 lines
3.3 KiB
Go
// 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 (
|
|
"context"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// CommonSubscriptionPackage common subscription package
|
|
//
|
|
// swagger:model common.SubscriptionPackage
|
|
type CommonSubscriptionPackage struct {
|
|
|
|
// features
|
|
Features []*CommonSubscriptionFeature `json:"features"`
|
|
|
|
// id
|
|
ID string `json:"id,omitempty"`
|
|
|
|
// name
|
|
// Required: true
|
|
// Max Length: 256
|
|
Name *string `json:"name"`
|
|
}
|
|
|
|
// Validate validates this common subscription package
|
|
func (m *CommonSubscriptionPackage) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateFeatures(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateName(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CommonSubscriptionPackage) validateFeatures(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Features) { // not required
|
|
return nil
|
|
}
|
|
|
|
for i := 0; i < len(m.Features); i++ {
|
|
if swag.IsZero(m.Features[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if m.Features[i] != nil {
|
|
if err := m.Features[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("features" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("features" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *CommonSubscriptionPackage) validateName(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("name", "body", m.Name); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.MaxLength("name", "body", *m.Name, 256); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this common subscription package based on the context it is used
|
|
func (m *CommonSubscriptionPackage) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateFeatures(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CommonSubscriptionPackage) contextValidateFeatures(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(m.Features); i++ {
|
|
|
|
if m.Features[i] != nil {
|
|
|
|
if swag.IsZero(m.Features[i]) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Features[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("features" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("features" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *CommonSubscriptionPackage) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *CommonSubscriptionPackage) UnmarshalBinary(b []byte) error {
|
|
var res CommonSubscriptionPackage
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|