Files
cloud-services/pkg/ota_api/models/common_subscription.go

102 lines
2.2 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"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// CommonSubscription common subscription
//
// swagger:model common.Subscription
type CommonSubscription struct {
// destination
// Required: true
// Max Length: 10
Destination *string `json:"destination"`
// expires
Expires string `json:"expires,omitempty"`
// name
// Required: true
// Max Length: 256
Name *string `json:"name"`
}
// Validate validates this common subscription
func (m *CommonSubscription) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateDestination(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 *CommonSubscription) validateDestination(formats strfmt.Registry) error {
if err := validate.Required("destination", "body", m.Destination); err != nil {
return err
}
if err := validate.MaxLength("destination", "body", *m.Destination, 10); err != nil {
return err
}
return nil
}
func (m *CommonSubscription) 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 validates this common subscription based on context it is used
func (m *CommonSubscription) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *CommonSubscription) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CommonSubscription) UnmarshalBinary(b []byte) error {
var res CommonSubscription
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}