lib/api/plex/plex_models/response_meta.go

154 lines
3.4 KiB
Go
Raw Permalink Normal View History

2023-04-06 01:28:58 +00:00
// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package plex_models
import (
"context"
stderrors "errors"
2023-04-06 01:28:58 +00:00
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag/jsonutils"
"github.com/go-openapi/swag/typeutils"
2023-04-06 01:28:58 +00:00
)
// ResponseMeta response meta
//
// swagger:model responseMeta
type ResponseMeta struct {
// Microservice Contact Info
Contact string `json:"Contact,omitempty"`
// Copyright Info
Copyright string `json:"Copyright,omitempty"`
2023-06-05 00:09:35 +00:00
// Account Number used for recording transactions
ExternalAccount string `json:"ExternalAccount,omitempty"`
2023-04-06 01:28:58 +00:00
// License Information and Restrictions
License string `json:"License,omitempty"`
// Operation ID
OperationID string `json:"OperationID,omitempty"`
// pagination
Pagination *Pagination `json:"Pagination,omitempty"`
// Request IP Address
RequestIP string `json:"RequestIP,omitempty"`
// Request Type
RequestType string `json:"RequestType,omitempty"`
// Request URL
RequestURL string `json:"RequestURL,omitempty"`
// Data Server Info
ServerInfo string `json:"ServerInfo,omitempty"`
// Data Server Response Time (ms)
ServerResponseTime string `json:"ServerResponseTime,omitempty"`
// Backend Server Timestamp
ServerTimestamp string `json:"ServerTimestamp,omitempty"`
}
// Validate validates this response meta
func (m *ResponseMeta) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validatePagination(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *ResponseMeta) validatePagination(formats strfmt.Registry) error {
if typeutils.IsZero(m.Pagination) { // not required
2023-04-06 01:28:58 +00:00
return nil
}
if m.Pagination != nil {
if err := m.Pagination.Validate(formats); err != nil {
ve := new(errors.Validation)
if stderrors.As(err, &ve) {
2023-04-06 01:28:58 +00:00
return ve.ValidateName("Pagination")
}
ce := new(errors.CompositeError)
if stderrors.As(err, &ce) {
2023-04-06 01:28:58 +00:00
return ce.ValidateName("Pagination")
}
2023-04-06 01:28:58 +00:00
return err
}
}
return nil
}
// ContextValidate validate this response meta based on the context it is used
func (m *ResponseMeta) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidatePagination(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *ResponseMeta) contextValidatePagination(ctx context.Context, formats strfmt.Registry) error {
if m.Pagination != nil {
if typeutils.IsZero(m.Pagination) { // not required
return nil
}
2023-04-06 01:28:58 +00:00
if err := m.Pagination.ContextValidate(ctx, formats); err != nil {
ve := new(errors.Validation)
if stderrors.As(err, &ve) {
2023-04-06 01:28:58 +00:00
return ve.ValidateName("Pagination")
}
ce := new(errors.CompositeError)
if stderrors.As(err, &ce) {
2023-04-06 01:28:58 +00:00
return ce.ValidateName("Pagination")
}
2023-04-06 01:28:58 +00:00
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *ResponseMeta) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return jsonutils.WriteJSON(m)
2023-04-06 01:28:58 +00:00
}
// UnmarshalBinary interface implementation
func (m *ResponseMeta) UnmarshalBinary(b []byte) error {
var res ResponseMeta
if err := jsonutils.ReadJSON(b, &res); err != nil {
2023-04-06 01:28:58 +00:00
return err
}
*m = res
return nil
}