github.com/weaviate/weaviate@v1.24.6/entities/models/additional_properties.go (about)

     1  //                           _       _
     2  // __      _____  __ ___   ___  __ _| |_ ___
     3  // \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
     4  //  \ V  V /  __/ (_| |\ V /| | (_| | ||  __/
     5  //   \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
     6  //
     7  //  Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
     8  //
     9  //  CONTACT: hello@weaviate.io
    10  //
    11  
    12  // Code generated by go-swagger; DO NOT EDIT.
    13  
    14  package models
    15  
    16  // This file was generated by the swagger tool.
    17  // Editing this file might prove futile when you re-run the swagger generate command
    18  
    19  import (
    20  	"context"
    21  
    22  	"github.com/go-openapi/strfmt"
    23  )
    24  
    25  // AdditionalProperties Additional Meta information about a single object object.
    26  //
    27  // swagger:model AdditionalProperties
    28  type AdditionalProperties map[string]interface{}
    29  
    30  // Validate validates this additional properties
    31  func (m AdditionalProperties) Validate(formats strfmt.Registry) error {
    32  	return nil
    33  }
    34  
    35  // ContextValidate validates this additional properties based on context it is used
    36  func (m AdditionalProperties) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
    37  	return nil
    38  }